pub struct ShutdownEventContainer<C0> {
pub id: C0,
}
Expand description
Derived columnar container for a struct.
Fields§
§id: C0
Container for #names.
Trait Implementations§
Source§impl<'a, C0> AsBytes<'a> for ShutdownEventContainer<C0>where
C0: AsBytes<'a>,
impl<'a, C0> AsBytes<'a> for ShutdownEventContainer<C0>where
C0: AsBytes<'a>,
Source§impl<C0> Clear for ShutdownEventContainer<C0>where
C0: Clear,
impl<C0> Clear for ShutdownEventContainer<C0>where
C0: Clear,
Source§impl<C0: Clone> Clone for ShutdownEventContainer<C0>
impl<C0: Clone> Clone for ShutdownEventContainer<C0>
Source§fn clone(&self) -> ShutdownEventContainer<C0>
fn clone(&self) -> ShutdownEventContainer<C0>
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 Container<ShutdownEvent> for ShutdownEventContainer<<usize as Columnar>::Container>
impl Container<ShutdownEvent> for ShutdownEventContainer<<usize as Columnar>::Container>
Source§impl<C0: Debug> Debug for ShutdownEventContainer<C0>
impl<C0: Debug> Debug for ShutdownEventContainer<C0>
Source§impl<C0: Default> Default for ShutdownEventContainer<C0>
impl<C0: Default> Default for ShutdownEventContainer<C0>
Source§fn default() -> ShutdownEventContainer<C0>
fn default() -> ShutdownEventContainer<C0>
Returns the “default value” for a type. Read more
Source§impl<'de, C0> Deserialize<'de> for ShutdownEventContainer<C0>where
C0: Deserialize<'de>,
impl<'de, C0> Deserialize<'de> for ShutdownEventContainer<C0>where
C0: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'columnar, C0> FromBytes<'columnar> for ShutdownEventContainer<C0>where
C0: FromBytes<'columnar>,
impl<'columnar, C0> FromBytes<'columnar> for ShutdownEventContainer<C0>where
C0: FromBytes<'columnar>,
Source§impl<'columnar, C0> Index for &'columnar ShutdownEventContainer<C0>where
&'columnar C0: Index,
impl<'columnar, C0> Index for &'columnar ShutdownEventContainer<C0>where
&'columnar C0: Index,
Source§type Ref = ShutdownEventReference<<&'columnar C0 as Index>::Ref>
type Ref = ShutdownEventReference<<&'columnar C0 as Index>::Ref>
The type returned by the
get
method. Read morefn get(&self, index: usize) -> Self::Ref
fn last(&self) -> Option<Self::Ref>where
Self: Len,
fn iter(&self) -> IterOwn<&Self>
fn into_iter(self) -> IterOwn<Self>where
Self: Sized,
Source§impl<C0> Index for ShutdownEventContainer<C0>where
C0: Index,
impl<C0> Index for ShutdownEventContainer<C0>where
C0: Index,
Source§type Ref = ShutdownEventReference<<C0 as Index>::Ref>
type Ref = ShutdownEventReference<<C0 as Index>::Ref>
The type returned by the
get
method. Read morefn get(&self, index: usize) -> Self::Ref
fn last(&self) -> Option<Self::Ref>where
Self: Len,
fn iter(&self) -> IterOwn<&Self>
fn into_iter(self) -> IterOwn<Self>where
Self: Sized,
Source§impl<C0> Len for ShutdownEventContainer<C0>where
C0: Len,
impl<C0> Len for ShutdownEventContainer<C0>where
C0: Len,
Source§impl<'columnar, C0> Push<&'columnar ShutdownEvent> for ShutdownEventContainer<C0>
impl<'columnar, C0> Push<&'columnar ShutdownEvent> for ShutdownEventContainer<C0>
Source§fn push(&mut self, item: &'columnar ShutdownEvent)
fn push(&mut self, item: &'columnar ShutdownEvent)
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> Push<ShutdownEvent> for ShutdownEventContainer<C0>
impl<C0> Push<ShutdownEvent> for ShutdownEventContainer<C0>
Source§fn push(&mut self, item: ShutdownEvent)
fn push(&mut self, item: ShutdownEvent)
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, R0> Push<ShutdownEventReference<R0>> for ShutdownEventContainer<C0>where
C0: Push<R0>,
impl<C0, R0> Push<ShutdownEventReference<R0>> for ShutdownEventContainer<C0>where
C0: Push<R0>,
Source§fn push(&mut self, item: ShutdownEventReference<R0>)
fn push(&mut self, item: ShutdownEventReference<R0>)
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> Serialize for ShutdownEventContainer<C0>where
C0: Serialize,
impl<C0> Serialize for ShutdownEventContainer<C0>where
C0: Serialize,
impl<C0: Copy> Copy for ShutdownEventContainer<C0>
Auto Trait Implementations§
impl<C0> Freeze for ShutdownEventContainer<C0>where
C0: Freeze,
impl<C0> RefUnwindSafe for ShutdownEventContainer<C0>where
C0: RefUnwindSafe,
impl<C0> Send for ShutdownEventContainer<C0>where
C0: Send,
impl<C0> Sync for ShutdownEventContainer<C0>where
C0: Sync,
impl<C0> Unpin for ShutdownEventContainer<C0>where
C0: Unpin,
impl<C0> UnwindSafe for ShutdownEventContainer<C0>where
C0: UnwindSafe,
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