Struct timely::dataflow::operators::capture::event::link::EventLink[][src]

pub struct EventLink<T, D> {
    pub event: Option<Event<T, D>>,
    pub next: RefCell<Option<Rc<EventLink<T, D>>>>,
}

A linked list of Event<T, D>.

Fields

event: Option<Event<T, D>>

An event, if one exists.

An event might not exist, if either we want to insert a None and have the output iterator pause, or in the case of the very first linked list element, which has no event when constructed.

next: RefCell<Option<Rc<EventLink<T, D>>>>

The next event, if it exists.

Implementations

impl<T, D> EventLink<T, D>[src]

pub fn new() -> EventLink<T, D>[src]

Allocates a new EventLink.

Trait Implementations

impl<T, D> Drop for EventLink<T, D>[src]

Auto Trait Implementations

impl<T, D> !RefUnwindSafe for EventLink<T, D>

impl<T, D> !Send for EventLink<T, D>

impl<T, D> !Sync for EventLink<T, D>

impl<T, D> Unpin for EventLink<T, D> where
    D: Unpin,
    T: Unpin

impl<T, D> !UnwindSafe for EventLink<T, D>

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.