pub struct DictNode {
pub key: u32,
pub next: NodeIdx,
pub prev: NodeIdx,
}Fields§
§key: u32§next: NodeIdx§prev: NodeIdxTrait Implementations§
Auto Trait Implementations§
impl Freeze for DictNode
impl RefUnwindSafe for DictNode
impl Send for DictNode
impl Sync for DictNode
impl Unpin for DictNode
impl UnsafeUnpin for DictNode
impl UnwindSafe for DictNode
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