Struct timely::progress::subgraph::Subgraph[][src]

pub struct Subgraph<TOuter, TInner> where
    TOuter: Timestamp,
    TInner: Timestamp + Refines<TOuter>, 
{ pub path: Vec<usize>, // some fields omitted }

A dataflow subgraph.

The subgraph type contains the infrastructure required to describe the topology of and track progress within a dataflow subgraph.

Fields

path: Vec<usize>

Path of identifiers from the root.

Trait Implementations

impl<TOuter, TInner> Operate<TOuter> for Subgraph<TOuter, TInner> where
    TOuter: Timestamp,
    TInner: Timestamp + Refines<TOuter>, 
[src]

impl<TOuter, TInner> Schedule for Subgraph<TOuter, TInner> where
    TOuter: Timestamp,
    TInner: Timestamp + Refines<TOuter>, 
[src]

Auto Trait Implementations

impl<TOuter, TInner> !RefUnwindSafe for Subgraph<TOuter, TInner>

impl<TOuter, TInner> !Send for Subgraph<TOuter, TInner>

impl<TOuter, TInner> !Sync for Subgraph<TOuter, TInner>

impl<TOuter, TInner> Unpin for Subgraph<TOuter, TInner> where
    TInner: Unpin,
    TOuter: Unpin,
    <TInner as Timestamp>::Summary: Unpin

impl<TOuter, TInner> !UnwindSafe for Subgraph<TOuter, TInner>

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.