Struct object_chain::Link[][src]

pub struct Link<V, C> where
    C: ChainElement
{ pub parent: C, pub object: V, }

This piece of the chain contains some object

Fields

parent: C

The rest of the object chain

object: V

The current object

Trait Implementations

impl<V, VC> ChainElement for Link<V, VC> where
    VC: ChainElement
[src]

type Inner = V

Auto Trait Implementations

impl<V, C> Send for Link<V, C> where
    C: Send,
    V: Send

impl<V, C> Sync for Link<V, C> where
    C: Sync,
    V: Sync

impl<V, C> Unpin for Link<V, C> where
    C: Unpin,
    V: Unpin

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.