[][src]Struct rc_dlist_deque::dlist::Link

pub struct Link<N, S> where
    S: Selector<Node = N>, 
{ /* fields omitted */ }

In a node, its potential membership of a list.

At least one of these should appear in each node.

Not needed with Node1, where this is implicit.

struct Link<N,S> where S : Selector<Node=N>

Methods

impl<N, S: Selector<Node = N>> Link<N, S>[src]

pub fn new() -> Self[src]

Creates a new blank Link (ie one which is not on any list).

Trait Implementations

impl<N, S: Selector<Node = N>> Default for Link<N, S>[src]

Auto Trait Implementations

impl<N, S> !RefUnwindSafe for Link<N, S>

impl<N, S> !Send for Link<N, S>

impl<N, S> !Sync for Link<N, S>

impl<N, S> Unpin for Link<N, S> where
    S: Unpin

impl<N, S> UnwindSafe for Link<N, S> where
    N: RefUnwindSafe,
    S: UnwindSafe

Blanket Implementations

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

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

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

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 = Infallible

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.