Struct timely::communication::logging::StateEvent[][src]

pub struct StateEvent {
    pub send: bool,
    pub process: usize,
    pub remote: usize,
    pub start: bool,
}

Starting or stopping communication threads.

Fields

send: bool

Is the thread a send (vs a recv) thread.

process: usize

The host process id.

remote: usize

The remote process id.

start: bool

Is the thread starting or stopping.

Trait Implementations

impl Abomonation for StateEvent[src]

impl Clone for StateEvent[src]

impl Copy for StateEvent[src]

impl Debug for StateEvent[src]

impl Eq for StateEvent[src]

impl From<StateEvent> for CommunicationEvent[src]

impl Hash for StateEvent[src]

impl PartialEq<StateEvent> for StateEvent[src]

impl StructuralEq for StateEvent[src]

impl StructuralPartialEq for StateEvent[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> 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.