Struct timely::communication::logging::CommunicationSetup
source · pub struct CommunicationSetup {
pub sender: bool,
pub process: usize,
pub remote: Option<usize>,
}
Expand description
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§
source§impl Clone for CommunicationSetup
impl Clone for CommunicationSetup
source§fn clone(&self) -> CommunicationSetup
fn clone(&self) -> CommunicationSetup
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Columnar for CommunicationSetup
impl Columnar for CommunicationSetup
§type Ref<'a> = CommunicationSetupReference<<bool as Columnar>::Ref<'a>, <usize as Columnar>::Ref<'a>, <Option<usize> as Columnar>::Ref<'a>>
where
bool: 'a,
usize: 'a,
Option<usize>: 'a
type Ref<'a> = CommunicationSetupReference<<bool as Columnar>::Ref<'a>, <usize as Columnar>::Ref<'a>, <Option<usize> as Columnar>::Ref<'a>> where bool: 'a, usize: 'a, Option<usize>: 'a
For each lifetime, a reference with that lifetime. Read more
source§fn copy_from<'a>(&mut self, other: <CommunicationSetup as Columnar>::Ref<'a>)
fn copy_from<'a>(&mut self, other: <CommunicationSetup as Columnar>::Ref<'a>)
Repopulates
self
from a reference. Read moresource§fn into_owned<'a>(
other: <CommunicationSetup as Columnar>::Ref<'a>,
) -> CommunicationSetup
fn into_owned<'a>( other: <CommunicationSetup as Columnar>::Ref<'a>, ) -> CommunicationSetup
Produce an instance of
Self
from Self::Ref<'a>
.§type Container = CommunicationSetupContainer<<bool as Columnar>::Container, <usize as Columnar>::Container, <Option<usize> as Columnar>::Container>
type Container = CommunicationSetupContainer<<bool as Columnar>::Container, <usize as Columnar>::Container, <Option<usize> as Columnar>::Container>
The type that stores the columnar representation. Read more
source§fn as_columns<'a, I>(selves: I) -> Self::Containerwhere
I: IntoIterator<Item = &'a Self>,
Self: 'a,
fn as_columns<'a, I>(selves: I) -> Self::Containerwhere
I: IntoIterator<Item = &'a Self>,
Self: 'a,
Converts a sequence of the references to the type into columnar form.
source§fn into_columns<I>(selves: I) -> Self::Containerwhere
I: IntoIterator<Item = Self>,
Self: Sized,
fn into_columns<I>(selves: I) -> Self::Containerwhere
I: IntoIterator<Item = Self>,
Self: Sized,
Converts a sequence of the type into columnar form. Read more
source§impl Container<CommunicationSetup> for CommunicationSetupContainer<<bool as Columnar>::Container, <usize as Columnar>::Container, <Option<usize> as Columnar>::Container>
impl Container<CommunicationSetup> for CommunicationSetupContainer<<bool as Columnar>::Container, <usize as Columnar>::Container, <Option<usize> as Columnar>::Container>
§type Borrowed<'a> = CommunicationSetupContainer<<<bool as Columnar>::Container as Container<bool>>::Borrowed<'a>, <<usize as Columnar>::Container as Container<usize>>::Borrowed<'a>, <<Option<usize> as Columnar>::Container as Container<Option<usize>>>::Borrowed<'a>>
where
bool: 'a,
usize: 'a,
Option<usize>: 'a
type Borrowed<'a> = CommunicationSetupContainer<<<bool as Columnar>::Container as Container<bool>>::Borrowed<'a>, <<usize as Columnar>::Container as Container<usize>>::Borrowed<'a>, <<Option<usize> as Columnar>::Container as Container<Option<usize>>>::Borrowed<'a>> where bool: 'a, usize: 'a, Option<usize>: 'a
The type of a borrowed container. Read more
source§impl Debug for CommunicationSetup
impl Debug for CommunicationSetup
source§impl<'de> Deserialize<'de> for CommunicationSetup
impl<'de> Deserialize<'de> for CommunicationSetup
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CommunicationSetup, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CommunicationSetup, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for CommunicationSetup
impl Hash for CommunicationSetup
source§impl<R0, R1, R2> PartialEq<CommunicationSetup> for CommunicationSetupReference<R0, R1, R2>
impl<R0, R1, R2> PartialEq<CommunicationSetup> for CommunicationSetupReference<R0, R1, R2>
source§impl PartialEq for CommunicationSetup
impl PartialEq for CommunicationSetup
source§impl<'columnar, C0, C1, C2> Push<&'columnar CommunicationSetup> for CommunicationSetupContainer<C0, C1, C2>
impl<'columnar, C0, C1, C2> Push<&'columnar CommunicationSetup> for CommunicationSetupContainer<C0, C1, C2>
source§fn push(&mut self, item: &'columnar CommunicationSetup)
fn push(&mut self, item: &'columnar CommunicationSetup)
Pushes an item onto
self
.source§fn extend(&mut self, iter: impl IntoIterator<Item = T>)
fn extend(&mut self, iter: impl IntoIterator<Item = T>)
Pushes elements of an iterator onto
self
.source§impl<C0, C1, C2> Push<CommunicationSetup> for CommunicationSetupContainer<C0, C1, C2>
impl<C0, C1, C2> Push<CommunicationSetup> for CommunicationSetupContainer<C0, C1, C2>
source§fn push(&mut self, item: CommunicationSetup)
fn push(&mut self, item: CommunicationSetup)
Pushes an item onto
self
.source§fn extend(&mut self, iter: impl IntoIterator<Item = T>)
fn extend(&mut self, iter: impl IntoIterator<Item = T>)
Pushes elements of an iterator onto
self
.source§impl Serialize for CommunicationSetup
impl Serialize for CommunicationSetup
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for CommunicationSetup
impl Eq for CommunicationSetup
impl StructuralPartialEq for CommunicationSetup
Auto Trait Implementations§
impl Freeze for CommunicationSetup
impl RefUnwindSafe for CommunicationSetup
impl Send for CommunicationSetup
impl Sync for CommunicationSetup
impl Unpin for CommunicationSetup
impl UnwindSafe for CommunicationSetup
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.