pub struct Range {
pub hash_start: u64,
pub hash_end: u64,
pub count: usize,
pub items: Vec<HashItem>,
}Fields§
§hash_start: u64The starting hash value of the range.
hash_end: u64The ending hash value of the range.
count: usizeThe number of keys within the range.
items: Vec<HashItem>The items stored within the range.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Range
impl RefUnwindSafe for Range
impl Send for Range
impl Sync for Range
impl Unpin for Range
impl UnwindSafe for Range
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