pub struct Entry<Key: Hash + Eq + Clone, T: Clone> { /* private fields */ }Expand description
A node entry in a MapTree
This consists of a value and the associated key
Implementations§
Trait Implementations§
impl<Key: Hash + Eq + Clone, T: Clone> StructuralPartialEq for Entry<Key, T>
Auto Trait Implementations§
impl<Key, T> Freeze for Entry<Key, T>
impl<Key, T> RefUnwindSafe for Entry<Key, T>where
T: RefUnwindSafe,
Key: RefUnwindSafe,
impl<Key, T> Send for Entry<Key, T>
impl<Key, T> Sync for Entry<Key, T>
impl<Key, T> Unpin for Entry<Key, T>
impl<Key, T> UnwindSafe for Entry<Key, T>where
T: UnwindSafe,
Key: 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