pub struct PrefixScan<T> {
pub values: Vec<T>,
pub inclusive: bool,
pub direction: &'static str,
}Expand description
Prefix scan result container.
Fields§
§values: Vec<T>§inclusive: bool§direction: &'static strImplementations§
Source§impl<T: Clone> PrefixScan<T>
impl<T: Clone> PrefixScan<T>
Auto Trait Implementations§
impl<T> Freeze for PrefixScan<T>
impl<T> RefUnwindSafe for PrefixScan<T>where
T: RefUnwindSafe,
impl<T> Send for PrefixScan<T>where
T: Send,
impl<T> Sync for PrefixScan<T>where
T: Sync,
impl<T> Unpin for PrefixScan<T>where
T: Unpin,
impl<T> UnsafeUnpin for PrefixScan<T>
impl<T> UnwindSafe for PrefixScan<T>where
T: UnwindSafe,
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