Struct timely::logging::ChannelsEvent[][src]

pub struct ChannelsEvent {
    pub id: usize,
    pub scope_addr: Vec<usize>,
    pub source: (usize, usize),
    pub target: (usize, usize),
}

The creation of a channel between operators.

Fields

id: usize

Worker-unique identifier for the channel

scope_addr: Vec<usize>

Sequence of nested scope identifiers indicating the path from the root to this instance.

source: (usize, usize)

Source descriptor, indicating operator index and output port.

target: (usize, usize)

Target descriptor, indicating operator index and input port.

Trait Implementations

impl Abomonation for ChannelsEvent[src]

impl Clone for ChannelsEvent[src]

impl Debug for ChannelsEvent[src]

impl<'de> Deserialize<'de> for ChannelsEvent[src]

impl Eq for ChannelsEvent[src]

impl From<ChannelsEvent> for TimelyEvent[src]

impl Hash for ChannelsEvent[src]

impl Ord for ChannelsEvent[src]

impl PartialEq<ChannelsEvent> for ChannelsEvent[src]

impl PartialOrd<ChannelsEvent> for ChannelsEvent[src]

impl Serialize for ChannelsEvent[src]

impl StructuralEq for ChannelsEvent[src]

impl StructuralPartialEq for ChannelsEvent[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> Data for T where
    T: 'static + Send + Sync + Any + Abomonation
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> ExchangeData for T where
    T: Data + Data
[src]

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

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

impl<T> ProgressEventTimestamp for T where
    T: Data + Any + Debug
[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.