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

pub trait ScopeParent: Allocate + Clone {
    type Timestamp: Timestamp;
    fn new_identifier(&mut self) -> usize;
}

The information a child scope needs from its parent.

Associated Types

The timestamp associated with data in this scope.

Required Methods

Allocates a new locally unique identifier.

Implementors