pub struct StateEvent {
pub send: bool,
pub process: usize,
pub remote: usize,
pub start: bool,
}
Expand description
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§
Source§impl Clone for StateEvent
impl Clone for StateEvent
Source§fn clone(&self) -> StateEvent
fn clone(&self) -> StateEvent
Returns a duplicate 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 StateEvent
impl Columnar for StateEvent
Source§type Container = StateEventContainer<<bool as Columnar>::Container, <usize as Columnar>::Container, <usize as Columnar>::Container, <bool as Columnar>::Container>
type Container = StateEventContainer<<bool as Columnar>::Container, <usize as Columnar>::Container, <usize as Columnar>::Container, <bool as Columnar>::Container>
The type that stores the columnar representation. Read more
Source§fn copy_from<'a>(
&mut self,
other: <<StateEvent as Columnar>::Container as Container>::Ref<'a>,
)
fn copy_from<'a>( &mut self, other: <<StateEvent as Columnar>::Container as Container>::Ref<'a>, )
Repopulates
self
from a reference. Read moreSource§fn into_owned<'a>(
other: <<StateEvent as Columnar>::Container as Container>::Ref<'a>,
) -> StateEvent
fn into_owned<'a>( other: <<StateEvent as Columnar>::Container as Container>::Ref<'a>, ) -> StateEvent
Produce an instance of
Self
from Self::Ref<'a>
.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 Debug for StateEvent
impl Debug for StateEvent
Source§impl<'de> Deserialize<'de> for StateEvent
impl<'de> Deserialize<'de> for StateEvent
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<StateEvent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<StateEvent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<StateEvent> for CommunicationEvent
impl From<StateEvent> for CommunicationEvent
Source§fn from(v: StateEvent) -> CommunicationEvent
fn from(v: StateEvent) -> CommunicationEvent
Converts to this type from the input type.
Source§impl Hash for StateEvent
impl Hash for StateEvent
Source§impl<R0, R1, R2, R3> PartialEq<StateEvent> for StateEventReference<R0, R1, R2, R3>
impl<R0, R1, R2, R3> PartialEq<StateEvent> for StateEventReference<R0, R1, R2, R3>
Source§impl PartialEq for StateEvent
impl PartialEq for StateEvent
Source§impl<'columnar, C0, C1, C2, C3> Push<&'columnar StateEvent> for StateEventContainer<C0, C1, C2, C3>
impl<'columnar, C0, C1, C2, C3> Push<&'columnar StateEvent> for StateEventContainer<C0, C1, C2, C3>
Source§fn push(&mut self, item: &'columnar StateEvent)
fn push(&mut self, item: &'columnar StateEvent)
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, C3> Push<StateEvent> for StateEventContainer<C0, C1, C2, C3>
impl<C0, C1, C2, C3> Push<StateEvent> for StateEventContainer<C0, C1, C2, C3>
Source§fn push(&mut self, item: StateEvent)
fn push(&mut self, item: StateEvent)
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 StateEvent
impl Serialize for StateEvent
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 StateEvent
impl Eq for StateEvent
impl StructuralPartialEq for StateEvent
Auto Trait Implementations§
impl Freeze for StateEvent
impl RefUnwindSafe for StateEvent
impl Send for StateEvent
impl Sync for StateEvent
impl Unpin for StateEvent
impl UnwindSafe for StateEvent
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§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more