pub struct KeyRange {
pub start: Vec<u8>,
pub end: Vec<u8>,
}Expand description
Represents a key range for approximate size calculation.
Fields§
§start: Vec<u8>The start key of the range (inclusive).
end: Vec<u8>The end key of the range (exclusive).
Implementations§
Auto Trait Implementations§
impl Freeze for KeyRange
impl RefUnwindSafe for KeyRange
impl Send for KeyRange
impl Sync for KeyRange
impl Unpin for KeyRange
impl UnsafeUnpin for KeyRange
impl UnwindSafe for KeyRange
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more