pub struct TimelySetupContainer<C0> {
pub index: C0,
}
Expand description
Derived columnar container for a struct.
Fields§
§index: C0
Container for #names.
Trait Implementations§
Source§impl<'a, C0> AsBytes<'a> for TimelySetupContainer<C0>where
C0: AsBytes<'a>,
impl<'a, C0> AsBytes<'a> for TimelySetupContainer<C0>where
C0: AsBytes<'a>,
Source§impl<C0> Clear for TimelySetupContainer<C0>where
C0: Clear,
impl<C0> Clear for TimelySetupContainer<C0>where
C0: Clear,
Source§impl<C0: Clone> Clone for TimelySetupContainer<C0>
impl<C0: Clone> Clone for TimelySetupContainer<C0>
Source§fn clone(&self) -> TimelySetupContainer<C0>
fn clone(&self) -> TimelySetupContainer<C0>
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: Container> Container for TimelySetupContainer<C0>
impl<C0: Container> Container for TimelySetupContainer<C0>
Source§type Ref<'a> = TimelySetupReference<<C0 as Container>::Ref<'a>>
where
C0: 'a
type Ref<'a> = TimelySetupReference<<C0 as Container>::Ref<'a>> where C0: 'a
For each lifetime, a reference with that lifetime. Read more
Source§type Borrowed<'a> = TimelySetupContainer<<C0 as Container>::Borrowed<'a>>
where
C0: 'a
type Borrowed<'a> = TimelySetupContainer<<C0 as Container>::Borrowed<'a>> where C0: 'a
The type of a borrowed container. Read more
Source§fn borrow<'a>(&'a self) -> Self::Borrowed<'a>
fn borrow<'a>(&'a self) -> Self::Borrowed<'a>
Converts a reference to the type to a borrowed variant.
Source§fn reborrow<'b, 'a: 'b>(thing: Self::Borrowed<'a>) -> Self::Borrowed<'b>
fn reborrow<'b, 'a: 'b>(thing: Self::Borrowed<'a>) -> Self::Borrowed<'b>
Reborrows the borrowed type to a shorter lifetime. See
Columnar::reborrow
for details.Source§fn reborrow_ref<'b, 'a: 'b>(thing: Self::Ref<'a>) -> Self::Ref<'b>
fn reborrow_ref<'b, 'a: 'b>(thing: Self::Ref<'a>) -> Self::Ref<'b>
Reborrows the borrowed type to a shorter lifetime. See
Columnar::reborrow
for details.fn reserve_for<'a, I>(&mut self, selves: I)
Source§impl<C0: Debug> Debug for TimelySetupContainer<C0>
impl<C0: Debug> Debug for TimelySetupContainer<C0>
Source§impl<C0: Default> Default for TimelySetupContainer<C0>
impl<C0: Default> Default for TimelySetupContainer<C0>
Source§fn default() -> TimelySetupContainer<C0>
fn default() -> TimelySetupContainer<C0>
Returns the “default value” for a type. Read more
Source§impl<'columnar, C0> FromBytes<'columnar> for TimelySetupContainer<C0>where
C0: FromBytes<'columnar>,
impl<'columnar, C0> FromBytes<'columnar> for TimelySetupContainer<C0>where
C0: FromBytes<'columnar>,
Source§impl<'columnar, C0> Index for &'columnar TimelySetupContainer<C0>where
&'columnar C0: Index,
impl<'columnar, C0> Index for &'columnar TimelySetupContainer<C0>where
&'columnar C0: Index,
Source§type Ref = TimelySetupReference<<&'columnar C0 as Index>::Ref>
type Ref = TimelySetupReference<<&'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,
Source§fn index_iter(&self) -> IterOwn<&Self>
fn index_iter(&self) -> IterOwn<&Self>
Converts
&self
into an iterator. Read moreSource§impl<C0> Index for TimelySetupContainer<C0>where
C0: Index,
impl<C0> Index for TimelySetupContainer<C0>where
C0: Index,
Source§impl<C0> Len for TimelySetupContainer<C0>where
C0: Len,
impl<C0> Len for TimelySetupContainer<C0>where
C0: Len,
Source§impl<'columnar, C0> Push<&'columnar TimelySetup> for TimelySetupContainer<C0>
impl<'columnar, C0> Push<&'columnar TimelySetup> for TimelySetupContainer<C0>
Source§fn push(&mut self, item: &'columnar TimelySetup)
fn push(&mut self, item: &'columnar TimelySetup)
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<TimelySetup> for TimelySetupContainer<C0>
impl<C0> Push<TimelySetup> for TimelySetupContainer<C0>
Source§fn push(&mut self, item: TimelySetup)
fn push(&mut self, item: TimelySetup)
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<TimelySetupReference<R0>> for TimelySetupContainer<C0>where
C0: Push<R0>,
impl<C0, R0> Push<TimelySetupReference<R0>> for TimelySetupContainer<C0>where
C0: Push<R0>,
Source§fn push(&mut self, item: TimelySetupReference<R0>)
fn push(&mut self, item: TimelySetupReference<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
.impl<C0: Copy> Copy for TimelySetupContainer<C0>
Auto Trait Implementations§
impl<C0> Freeze for TimelySetupContainer<C0>where
C0: Freeze,
impl<C0> RefUnwindSafe for TimelySetupContainer<C0>where
C0: RefUnwindSafe,
impl<C0> Send for TimelySetupContainer<C0>where
C0: Send,
impl<C0> Sync for TimelySetupContainer<C0>where
C0: Sync,
impl<C0> Unpin for TimelySetupContainer<C0>where
C0: Unpin,
impl<C0> UnwindSafe for TimelySetupContainer<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
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