pub struct CommunicationSetupContainer<C0, C1, C2> {
pub sender: C0,
pub process: C1,
pub remote: C2,
}
Expand description
Derived columnar container for a struct.
Fields§
§sender: C0
Container for #names.
process: C1
Container for #names.
remote: C2
Container for #names.
Trait Implementations§
Source§impl<'a, C0, C1, C2> AsBytes<'a> for CommunicationSetupContainer<C0, C1, C2>
impl<'a, C0, C1, C2> AsBytes<'a> for CommunicationSetupContainer<C0, C1, C2>
Source§impl<C0, C1, C2> Clear for CommunicationSetupContainer<C0, C1, C2>
impl<C0, C1, C2> Clear for CommunicationSetupContainer<C0, C1, C2>
Source§impl<C0, C1, C2> Clone for CommunicationSetupContainer<C0, C1, C2>
impl<C0, C1, C2> Clone for CommunicationSetupContainer<C0, C1, C2>
Source§fn clone(&self) -> CommunicationSetupContainer<C0, C1, C2>
fn clone(&self) -> CommunicationSetupContainer<C0, C1, C2>
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<C0, C1, C2> Container for CommunicationSetupContainer<C0, C1, C2>
impl<C0, C1, C2> Container for CommunicationSetupContainer<C0, C1, C2>
Source§type Ref<'a> = CommunicationSetupReference<<C0 as Container>::Ref<'a>, <C1 as Container>::Ref<'a>, <C2 as Container>::Ref<'a>>
where
C0: 'a,
C1: 'a,
C2: 'a
type Ref<'a> = CommunicationSetupReference<<C0 as Container>::Ref<'a>, <C1 as Container>::Ref<'a>, <C2 as Container>::Ref<'a>> where C0: 'a, C1: 'a, C2: 'a
For each lifetime, a reference with that lifetime. Read more
Source§type Borrowed<'a> = CommunicationSetupContainer<<C0 as Container>::Borrowed<'a>, <C1 as Container>::Borrowed<'a>, <C2 as Container>::Borrowed<'a>>
where
C0: 'a,
C1: 'a,
C2: 'a
type Borrowed<'a> = CommunicationSetupContainer<<C0 as Container>::Borrowed<'a>, <C1 as Container>::Borrowed<'a>, <C2 as Container>::Borrowed<'a>> where C0: 'a, C1: 'a, C2: 'a
The type of a borrowed container. Read more
Source§fn borrow<'a>(
&'a self,
) -> <CommunicationSetupContainer<C0, C1, C2> as Container>::Borrowed<'a>
fn borrow<'a>( &'a self, ) -> <CommunicationSetupContainer<C0, C1, C2> as Container>::Borrowed<'a>
Converts a reference to the type to a borrowed variant.
Source§fn reborrow<'b, 'a>(
thing: <CommunicationSetupContainer<C0, C1, C2> as Container>::Borrowed<'a>,
) -> <CommunicationSetupContainer<C0, C1, C2> as Container>::Borrowed<'b>where
'a: 'b,
fn reborrow<'b, 'a>(
thing: <CommunicationSetupContainer<C0, C1, C2> as Container>::Borrowed<'a>,
) -> <CommunicationSetupContainer<C0, C1, C2> as Container>::Borrowed<'b>where
'a: 'b,
Reborrows the borrowed type to a shorter lifetime. See
Columnar::reborrow
for details.Source§fn reborrow_ref<'b, 'a>(
thing: <CommunicationSetupContainer<C0, C1, C2> as Container>::Ref<'a>,
) -> <CommunicationSetupContainer<C0, C1, C2> as Container>::Ref<'b>where
'a: 'b,
fn reborrow_ref<'b, 'a>(
thing: <CommunicationSetupContainer<C0, C1, C2> as Container>::Ref<'a>,
) -> <CommunicationSetupContainer<C0, C1, C2> as Container>::Ref<'b>where
'a: 'b,
Reborrows the borrowed type to a shorter lifetime. See
Columnar::reborrow
for details.Source§fn extend_from_self(
&mut self,
other: <CommunicationSetupContainer<C0, C1, C2> as Container>::Borrowed<'_>,
range: Range<usize>,
)
fn extend_from_self( &mut self, other: <CommunicationSetupContainer<C0, C1, C2> as Container>::Borrowed<'_>, range: Range<usize>, )
fn reserve_for<'a, I>(&mut self, selves: I)where
CommunicationSetupContainer<C0, C1, C2>: 'a,
I: Iterator<Item = <CommunicationSetupContainer<C0, C1, C2> as Container>::Borrowed<'a>> + Clone,
Source§impl<C0, C1, C2> Debug for CommunicationSetupContainer<C0, C1, C2>
impl<C0, C1, C2> Debug for CommunicationSetupContainer<C0, C1, C2>
Source§impl<C0, C1, C2> Default for CommunicationSetupContainer<C0, C1, C2>
impl<C0, C1, C2> Default for CommunicationSetupContainer<C0, C1, C2>
Source§fn default() -> CommunicationSetupContainer<C0, C1, C2>
fn default() -> CommunicationSetupContainer<C0, C1, C2>
Returns the “default value” for a type. Read more
Source§impl<'columnar, C0, C1, C2> FromBytes<'columnar> for CommunicationSetupContainer<C0, C1, C2>
impl<'columnar, C0, C1, C2> FromBytes<'columnar> for CommunicationSetupContainer<C0, C1, C2>
Source§fn from_bytes(
bytes: &mut impl Iterator<Item = &'columnar [u8]>,
) -> CommunicationSetupContainer<C0, C1, C2>
fn from_bytes( bytes: &mut impl Iterator<Item = &'columnar [u8]>, ) -> CommunicationSetupContainer<C0, C1, C2>
Reconstructs
self
from a sequence of correctly aligned and sized bytes slices. Read moreSource§impl<'columnar, C0, C1, C2> Index for &'columnar CommunicationSetupContainer<C0, C1, C2>
impl<'columnar, C0, C1, C2> Index for &'columnar CommunicationSetupContainer<C0, C1, C2>
Source§type Ref = CommunicationSetupReference<<&'columnar C0 as Index>::Ref, <&'columnar C1 as Index>::Ref, <&'columnar C2 as Index>::Ref>
type Ref = CommunicationSetupReference<<&'columnar C0 as Index>::Ref, <&'columnar C1 as Index>::Ref, <&'columnar C2 as Index>::Ref>
The type returned by the
get
method. Read morefn get( &self, index: usize, ) -> <&'columnar CommunicationSetupContainer<C0, C1, C2> as Index>::Ref
fn last(&self) -> Option<Self::Ref>where
Self: Len,
Source§fn index_iter(&self) -> IterOwn<&Self>
fn index_iter(&self) -> IterOwn<&Self>
Converts
&self
into an iterator. Read moreSource§impl<C0, C1, C2> Index for CommunicationSetupContainer<C0, C1, C2>
impl<C0, C1, C2> Index for CommunicationSetupContainer<C0, C1, C2>
Source§type Ref = CommunicationSetupReference<<C0 as Index>::Ref, <C1 as Index>::Ref, <C2 as Index>::Ref>
type Ref = CommunicationSetupReference<<C0 as Index>::Ref, <C1 as Index>::Ref, <C2 as Index>::Ref>
The type returned by the
get
method. Read morefn get( &self, index: usize, ) -> <CommunicationSetupContainer<C0, C1, C2> as Index>::Ref
fn last(&self) -> Option<Self::Ref>where
Self: Len,
Source§fn index_iter(&self) -> IterOwn<&Self>
fn index_iter(&self) -> IterOwn<&Self>
Converts
&self
into an iterator. Read moreSource§impl<C0, C1, C2> Len for CommunicationSetupContainer<C0, C1, C2>
impl<C0, C1, C2> Len for CommunicationSetupContainer<C0, C1, C2>
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<C0, C1, C2, R0, R1, R2> Push<CommunicationSetupReference<R0, R1, R2>> for CommunicationSetupContainer<C0, C1, C2>
impl<C0, C1, C2, R0, R1, R2> Push<CommunicationSetupReference<R0, R1, R2>> for CommunicationSetupContainer<C0, C1, C2>
Source§fn push(&mut self, item: CommunicationSetupReference<R0, R1, R2>)
fn push(&mut self, item: CommunicationSetupReference<R0, R1, R2>)
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
.impl<C0, C1, C2> Copy for CommunicationSetupContainer<C0, C1, C2>
Auto Trait Implementations§
impl<C0, C1, C2> Freeze for CommunicationSetupContainer<C0, C1, C2>
impl<C0, C1, C2> RefUnwindSafe for CommunicationSetupContainer<C0, C1, C2>
impl<C0, C1, C2> Send for CommunicationSetupContainer<C0, C1, C2>
impl<C0, C1, C2> Sync for CommunicationSetupContainer<C0, C1, C2>
impl<C0, C1, C2> Unpin for CommunicationSetupContainer<C0, C1, C2>
impl<C0, C1, C2> UnwindSafe for CommunicationSetupContainer<C0, C1, C2>
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