struct LinkedListPosition<Ix> {
prev: Option<Ix>,
next: Option<Ix>,
}Fields§
§prev: Option<Ix>§next: Option<Ix>Trait Implementations§
Auto Trait Implementations§
impl<Ix> Freeze for LinkedListPosition<Ix>where
Ix: Freeze,
impl<Ix> RefUnwindSafe for LinkedListPosition<Ix>where
Ix: RefUnwindSafe,
impl<Ix> Send for LinkedListPosition<Ix>where
Ix: Send,
impl<Ix> Sync for LinkedListPosition<Ix>where
Ix: Sync,
impl<Ix> Unpin for LinkedListPosition<Ix>where
Ix: Unpin,
impl<Ix> UnsafeUnpin for LinkedListPosition<Ix>where
Ix: UnsafeUnpin,
impl<Ix> UnwindSafe for LinkedListPosition<Ix>where
Ix: 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