pub struct NodeKey<V> {
pub level: Level,
pub coordinates: V,
}
Expand description
Uniquely identifies a node slot in the Tree
.
Fields§
§level: Level
§coordinates: V
Implementations§
Trait Implementations§
impl<V: Copy> Copy for NodeKey<V>
impl<V: Eq> Eq for NodeKey<V>
impl<V> StructuralPartialEq for NodeKey<V>
Auto Trait Implementations§
impl<V> Freeze for NodeKey<V>where
V: Freeze,
impl<V> RefUnwindSafe for NodeKey<V>where
V: RefUnwindSafe,
impl<V> Send for NodeKey<V>where
V: Send,
impl<V> Sync for NodeKey<V>where
V: Sync,
impl<V> Unpin for NodeKey<V>where
V: Unpin,
impl<V> UnwindSafe for NodeKey<V>where
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