pub enum TreeQueryExactResult<'a, TKey: 'a, TValue: 'a> {
NotFound,
Found {
key: &'a TKey,
value: &'a TValue,
},
}
Variants§
Auto Trait Implementations§
impl<'a, TKey, TValue> Freeze for TreeQueryExactResult<'a, TKey, TValue>
impl<'a, TKey, TValue> RefUnwindSafe for TreeQueryExactResult<'a, TKey, TValue>where
TKey: RefUnwindSafe,
TValue: RefUnwindSafe,
impl<'a, TKey, TValue> Send for TreeQueryExactResult<'a, TKey, TValue>
impl<'a, TKey, TValue> Sync for TreeQueryExactResult<'a, TKey, TValue>
impl<'a, TKey, TValue> Unpin for TreeQueryExactResult<'a, TKey, TValue>
impl<'a, TKey, TValue> UnwindSafe for TreeQueryExactResult<'a, TKey, TValue>where
TKey: RefUnwindSafe,
TValue: 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