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

pub struct CommunicationSetup {
    pub sender: bool,
    pub process: usize,
    pub remote: Option<usize>,
}

Configuration information about a communication thread.

Fields

sender: bool

True when this is a send thread (or the receive thread).

process: usize

The process id of the thread.

remote: Option<usize>

The remote process id.

Trait Implementations

impl Abomonation for CommunicationSetup[src]

impl Clone for CommunicationSetup[src]

impl Copy for CommunicationSetup[src]

impl Debug for CommunicationSetup[src]

impl Eq for CommunicationSetup[src]

impl Hash for CommunicationSetup[src]

impl PartialEq<CommunicationSetup> for CommunicationSetup[src]

impl StructuralEq for CommunicationSetup[src]

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