Trait timely::dataflow::scopes::ScopeParent

source ·
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.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'a, G, T> ScopeParent for Child<'a, G, T>

§

type Timestamp = T

source§

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