[][src]Struct dager::collections::OutCol

pub struct OutCol<A> {
    pub edge: Option<Edge>,
    // some fields omitted
}

Represents some output pin that might have an edge attached. If an edge is attached, the parent node can send data to some receiving node's aggregator.

Fields

edge: Option<Edge>

Trait Implementations

impl<A> Default for OutCol<A>[src]

impl<A> OutSignature for OutCol<A> where
    A: Send + 'static, 
[src]

Auto Trait Implementations

impl<A> RefUnwindSafe for OutCol<A> where
    A: RefUnwindSafe

impl<A> Send for OutCol<A> where
    A: Send

impl<A> Sync for OutCol<A> where
    A: Sync

impl<A> Unpin for OutCol<A> where
    A: Unpin

impl<A> UnwindSafe for OutCol<A> where
    A: 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.