protocol: rename internal cursor modules

This commit is contained in:
Denis Drakhnia 2024-09-26 10:31:30 +03:00
parent 00233d3a10
commit 2350ccbe55
3 changed files with 4 additions and 4 deletions

View File

@ -1,13 +1,13 @@
// SPDX-License-Identifier: LGPL-3.0-only
// SPDX-FileCopyrightText: 2023 Denis Drakhnia <numas13@gmail.com>
mod cursor;
mod cursor_mut;
mod read;
mod write;
use core::fmt;
pub use cursor::{Cursor, GetKeyValue};
pub use cursor_mut::{CursorMut, PutKeyValue};
pub use read::{Cursor, GetKeyValue};
pub use write::{CursorMut, PutKeyValue};
/// The error type for `Cursor` and `CursorMut`.
#[derive(Debug, PartialEq, Eq)]