pub enum LookupRet<'a, K, V> {
Found(&'a V),
NotFound,
ContinueIn(&'a Node<K, V>),
}
Variants§
Auto Trait Implementations§
impl<'a, K, V> RefUnwindSafe for LookupRet<'a, K, V>where K: RefUnwindSafe, V: RefUnwindSafe,
impl<'a, K, V> Send for LookupRet<'a, K, V>where K: Send + Sync, V: Send + Sync,
impl<'a, K, V> Sync for LookupRet<'a, K, V>where K: Send + Sync, V: Send + Sync,
impl<'a, K, V> Unpin for LookupRet<'a, K, V>
impl<'a, K, V> UnwindSafe for LookupRet<'a, K, V>where K: RefUnwindSafe, V: RefUnwindSafe,
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