pub struct BiNode<T> {
pub next: *mut BiNode<T>,
pub prev: *mut BiNode<T>,
pub val: MaybeUninit<T>,
}
Fields§
§next: *mut BiNode<T>
§prev: *mut BiNode<T>
§val: MaybeUninit<T>
Trait Implementations§
Auto Trait Implementations§
impl<T> RefUnwindSafe for BiNode<T>where
T: RefUnwindSafe,
impl<T> !Send for BiNode<T>
impl<T> !Sync for BiNode<T>
impl<T> Unpin for BiNode<T>where
T: Unpin,
impl<T> UnwindSafe for BiNode<T>where
T: UnwindSafe + RefUnwindSafe,
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