pub struct Node<K, V: Eq + Ord> { /* private fields */ }
Implementations§
Trait Implementations§
source§impl<K, V: Eq + Ord> Ord for Node<K, V>
impl<K, V: Eq + Ord> Ord for Node<K, V>
source§impl<K, V: Eq + Ord> PartialEq for Node<K, V>
impl<K, V: Eq + Ord> PartialEq for Node<K, V>
source§impl<K, V: Eq + Ord> PartialOrd for Node<K, V>
impl<K, V: Eq + Ord> PartialOrd for Node<K, V>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl<K, V: Eq + Ord> Eq for Node<K, V>
Auto Trait Implementations§
impl<K, V> RefUnwindSafe for Node<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for Node<K, V>
impl<K, V> Sync for Node<K, V>
impl<K, V> Unpin for Node<K, V>
impl<K, V> UnwindSafe for Node<K, V>where
K: UnwindSafe,
V: 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