pub enum LeafReadResult {
Deleted,
NotFound,
Found(u32),
InvalidKey,
}Variants§
Trait Implementations§
Source§impl Clone for LeafReadResult
impl Clone for LeafReadResult
Source§fn clone(&self) -> LeafReadResult
fn clone(&self) -> LeafReadResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LeafReadResult
impl Debug for LeafReadResult
Source§impl PartialEq for LeafReadResult
impl PartialEq for LeafReadResult
impl Eq for LeafReadResult
impl StructuralPartialEq for LeafReadResult
Auto Trait Implementations§
impl Freeze for LeafReadResult
impl RefUnwindSafe for LeafReadResult
impl Send for LeafReadResult
impl Sync for LeafReadResult
impl Unpin for LeafReadResult
impl UnsafeUnpin for LeafReadResult
impl UnwindSafe for LeafReadResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.