Struct timely::progress::reachability::PerOperator[][src]

pub struct PerOperator<T: Timestamp> {
    pub targets: Vec<PortInformation<T>>,
    pub sources: Vec<PortInformation<T>>,
}

Target and source information for each operator.

Fields

targets: Vec<PortInformation<T>>

Port information for each target.

sources: Vec<PortInformation<T>>

Port information for each source.

Implementations

impl<T: Timestamp> PerOperator<T>[src]

pub fn new(inputs: usize, outputs: usize) -> Self[src]

A new PerOperator bundle from numbers of input and output ports.

Auto Trait Implementations

impl<T> RefUnwindSafe for PerOperator<T> where
    T: RefUnwindSafe,
    <T as Timestamp>::Summary: RefUnwindSafe

impl<T> Send for PerOperator<T> where
    <T as Timestamp>::Summary: Send

impl<T> Sync for PerOperator<T> where
    <T as Timestamp>::Summary: Sync

impl<T> Unpin for PerOperator<T> where
    T: Unpin,
    <T as Timestamp>::Summary: Unpin

impl<T> UnwindSafe for PerOperator<T> where
    T: UnwindSafe,
    <T as Timestamp>::Summary: UnwindSafe

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.