Struct timely::dataflow::operators::generic::OperatorInfo[][src]

pub struct OperatorInfo {
    pub local_id: usize,
    pub global_id: usize,
    pub address: Vec<usize>,
}

Information about the operator being constructed

Fields

local_id: usize

Scope-local index assigned to the operator being constructed.

global_id: usize

Worker-unique identifier.

address: Vec<usize>

Operator address.

Implementations

impl OperatorInfo[src]

pub fn new(local_id: usize, global_id: usize, address: &[usize]) -> OperatorInfo[src]

Construct a new OperatorInfo.

Trait Implementations

impl Clone for OperatorInfo[src]

Auto Trait Implementations

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> Data for T where
    T: 'static + Clone
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.