[][src]Struct wdg_ds::DoublyLinkedListNode

pub struct DoublyLinkedListNode<T> {
    pub value: T,
    pub previous: Option<NonNull<DoublyLinkedListNode<T>>>,
    pub next: Option<NonNull<DoublyLinkedListNode<T>>>,
}

Fields

value: Tprevious: Option<NonNull<DoublyLinkedListNode<T>>>next: Option<NonNull<DoublyLinkedListNode<T>>>

Auto Trait Implementations

impl<T> !Send for DoublyLinkedListNode<T>

impl<T> !Sync for DoublyLinkedListNode<T>

impl<T> Unpin for DoublyLinkedListNode<T> where
    T: Unpin

impl<T> UnwindSafe for DoublyLinkedListNode<T> where
    T: RefUnwindSafe + UnwindSafe

impl<T> RefUnwindSafe for DoublyLinkedListNode<T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]