Trait timely::dataflow::scopes::ScopeParent[][src]

pub trait ScopeParent: AsWorker + Clone {
    type Timestamp: Timestamp;
}

The information a child scope needs from its parent.

Associated Types

type Timestamp: Timestamp[src]

The timestamp associated with data in this scope.

Loading content...

Implementors

impl<'a, G, T> ScopeParent for Child<'a, G, T> where
    G: ScopeParent,
    T: Timestamp + Refines<G::Timestamp>, 
[src]

type Timestamp = T

impl<A: Allocate> ScopeParent for Worker<A>[src]

type Timestamp = ()

Loading content...