pub struct NodeHandle<T> {
pub index: u32,
/* private fields */
}Expand description
Stable handle to a list node. Valid until removed.
Fields§
§index: u32Implementations§
Trait Implementations§
Source§impl<T: Clone> Clone for NodeHandle<T>
impl<T: Clone> Clone for NodeHandle<T>
Source§fn clone(&self) -> NodeHandle<T>
fn clone(&self) -> NodeHandle<T>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<T: Copy> Copy for NodeHandle<T>
Source§impl<T: Debug> Debug for NodeHandle<T>
impl<T: Debug> Debug for NodeHandle<T>
impl<T: Eq> Eq for NodeHandle<T>
Source§impl<T: Hash> Hash for NodeHandle<T>
impl<T: Hash> Hash for NodeHandle<T>
Source§impl<T: PartialEq> PartialEq for NodeHandle<T>
impl<T: PartialEq> PartialEq for NodeHandle<T>
impl<T: PartialEq> StructuralPartialEq for NodeHandle<T>
Auto Trait Implementations§
impl<T> Freeze for NodeHandle<T>where
PhantomData<T>: Freeze,
impl<T> RefUnwindSafe for NodeHandle<T>where
PhantomData<T>: RefUnwindSafe,
impl<T> Send for NodeHandle<T>where
PhantomData<T>: Send,
impl<T> Sync for NodeHandle<T>where
PhantomData<T>: Sync,
impl<T> Unpin for NodeHandle<T>where
PhantomData<T>: Unpin,
impl<T> UnsafeUnpin for NodeHandle<T>where
PhantomData<T>: UnsafeUnpin,
impl<T> UnwindSafe for NodeHandle<T>where
PhantomData<T>: 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