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

The information a child scope needs from its parent.

Required Associated Types§

source

type Timestamp: Timestamp

The timestamp associated with data in this scope.

Implementors§

source§

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

§

type Timestamp = T

source§

impl<A: Allocate> ScopeParent for Worker<A>