pub struct DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar = Vec<u8>, COff = Vec<u64>> {
pub Batch: C0,
pub Merge: C1,
pub Drop: C2,
pub MergeShortfall: C3,
pub TraceShare: C4,
pub Batcher: C5,
pub variant: CVar,
pub offset: COff,
}
Expand description
Derived columnar container for an enum.
Fields§
§Batch: C0
Container for #names.
Merge: C1
Container for #names.
Drop: C2
Container for #names.
MergeShortfall: C3
Container for #names.
Container for #names.
Batcher: C5
Container for #names.
variant: CVar
Container for variant.
offset: COff
Container for offset.
Trait Implementations§
Source§impl<'a, C0, C1, C2, C3, C4, C5, CVar, COff> AsBytes<'a> for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>
impl<'a, C0, C1, C2, C3, C4, C5, CVar, COff> AsBytes<'a> for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>
Source§impl<C0, C1, C2, C3, C4, C5> Clear for DifferentialEventContainer<C0, C1, C2, C3, C4, C5>
impl<C0, C1, C2, C3, C4, C5> Clear for DifferentialEventContainer<C0, C1, C2, C3, C4, C5>
Source§impl<C0: Clone, C1: Clone, C2: Clone, C3: Clone, C4: Clone, C5: Clone, CVar: Clone, COff: Clone> Clone for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>
impl<C0: Clone, C1: Clone, C2: Clone, C3: Clone, C4: Clone, C5: Clone, CVar: Clone, COff: Clone> Clone for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>
Source§fn clone(
&self,
) -> DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>
fn clone( &self, ) -> DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>
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, C1: Container, C2: Container, C3: Container, C4: Container, C5: Container> Container for DifferentialEventContainer<C0, C1, C2, C3, C4, C5>
impl<C0: Container, C1: Container, C2: Container, C3: Container, C4: Container, C5: Container> Container for DifferentialEventContainer<C0, C1, C2, C3, C4, C5>
Source§type Ref<'a> = DifferentialEventReference<<C0 as Container>::Ref<'a>, <C1 as Container>::Ref<'a>, <C2 as Container>::Ref<'a>, <C3 as Container>::Ref<'a>, <C4 as Container>::Ref<'a>, <C5 as Container>::Ref<'a>>
where
Self: 'a,
C0: 'a,
C1: 'a,
C2: 'a,
C3: 'a,
C4: 'a,
C5: 'a
type Ref<'a> = DifferentialEventReference<<C0 as Container>::Ref<'a>, <C1 as Container>::Ref<'a>, <C2 as Container>::Ref<'a>, <C3 as Container>::Ref<'a>, <C4 as Container>::Ref<'a>, <C5 as Container>::Ref<'a>> where Self: 'a, C0: 'a, C1: 'a, C2: 'a, C3: 'a, C4: 'a, C5: 'a
For each lifetime, a reference with that lifetime. Read more
Source§type Borrowed<'a> = DifferentialEventContainer<<C0 as Container>::Borrowed<'a>, <C1 as Container>::Borrowed<'a>, <C2 as Container>::Borrowed<'a>, <C3 as Container>::Borrowed<'a>, <C4 as Container>::Borrowed<'a>, <C5 as Container>::Borrowed<'a>, &'a [u8], &'a [u64]>
where
C0: 'a,
C1: 'a,
C2: 'a,
C3: 'a,
C4: 'a,
C5: 'a
type Borrowed<'a> = DifferentialEventContainer<<C0 as Container>::Borrowed<'a>, <C1 as Container>::Borrowed<'a>, <C2 as Container>::Borrowed<'a>, <C3 as Container>::Borrowed<'a>, <C4 as Container>::Borrowed<'a>, <C5 as Container>::Borrowed<'a>, &'a [u8], &'a [u64]> where C0: 'a, C1: 'a, C2: 'a, C3: 'a, C4: 'a, C5: '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§fn with_capacity_for<'a, I>(selves: I) -> Self
fn with_capacity_for<'a, I>(selves: I) -> Self
Allocates an empty container that can be extended by
selves
without reallocation. Read moreSource§impl<C0: Debug, C1: Debug, C2: Debug, C3: Debug, C4: Debug, C5: Debug, CVar: Debug, COff: Debug> Debug for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>
impl<C0: Debug, C1: Debug, C2: Debug, C3: Debug, C4: Debug, C5: Debug, CVar: Debug, COff: Debug> Debug for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>
Source§impl<C0: Default, C1: Default, C2: Default, C3: Default, C4: Default, C5: Default, CVar: Default, COff: Default> Default for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>
impl<C0: Default, C1: Default, C2: Default, C3: Default, C4: Default, C5: Default, CVar: Default, COff: Default> Default for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>
Source§fn default() -> DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>
fn default() -> DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>
Returns the “default value” for a type. Read more
Source§impl<'columnar, C0, C1, C2, C3, C4, C5, CVar, COff> FromBytes<'columnar> for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>
impl<'columnar, C0, C1, C2, C3, C4, C5, CVar, COff> FromBytes<'columnar> for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>
Source§impl<'columnar, C0, C1, C2, C3, C4, C5, CVal, COff> Index for &'columnar DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVal, COff>where
&'columnar C0: Index,
&'columnar C1: Index,
&'columnar C2: Index,
&'columnar C3: Index,
&'columnar C4: Index,
&'columnar C5: Index,
CVal: Len + IndexAs<u8>,
COff: Len + IndexAs<u64>,
impl<'columnar, C0, C1, C2, C3, C4, C5, CVal, COff> Index for &'columnar DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVal, COff>where
&'columnar C0: Index,
&'columnar C1: Index,
&'columnar C2: Index,
&'columnar C3: Index,
&'columnar C4: Index,
&'columnar C5: Index,
CVal: Len + IndexAs<u8>,
COff: Len + IndexAs<u64>,
Source§type Ref = DifferentialEventReference<<&'columnar C0 as Index>::Ref, <&'columnar C1 as Index>::Ref, <&'columnar C2 as Index>::Ref, <&'columnar C3 as Index>::Ref, <&'columnar C4 as Index>::Ref, <&'columnar C5 as Index>::Ref>
type Ref = DifferentialEventReference<<&'columnar C0 as Index>::Ref, <&'columnar C1 as Index>::Ref, <&'columnar C2 as Index>::Ref, <&'columnar C3 as Index>::Ref, <&'columnar C4 as Index>::Ref, <&'columnar C5 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, C1, C2, C3, C4, C5, CVal, COff> Index for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVal, COff>
impl<C0, C1, C2, C3, C4, C5, CVal, COff> Index for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVal, COff>
Source§type Ref = DifferentialEventReference<<C0 as Index>::Ref, <C1 as Index>::Ref, <C2 as Index>::Ref, <C3 as Index>::Ref, <C4 as Index>::Ref, <C5 as Index>::Ref>
type Ref = DifferentialEventReference<<C0 as Index>::Ref, <C1 as Index>::Ref, <C2 as Index>::Ref, <C3 as Index>::Ref, <C4 as Index>::Ref, <C5 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, C1, C2, C3, C4, C5, CVar, COff> Len for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>where
CVar: Len,
impl<C0, C1, C2, C3, C4, C5, CVar, COff> Len for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>where
CVar: Len,
Source§impl<'columnar, C0, C1, C2, C3, C4, C5> Push<&'columnar DifferentialEvent> for DifferentialEventContainer<C0, C1, C2, C3, C4, C5>where
C0: Len + Push<&'columnar BatchEvent>,
C1: Len + Push<&'columnar MergeEvent>,
C2: Len + Push<&'columnar DropEvent>,
C3: Len + Push<&'columnar MergeShortfall>,
C4: Len + Push<&'columnar TraceShare>,
C5: Len + Push<&'columnar BatcherEvent>,
impl<'columnar, C0, C1, C2, C3, C4, C5> Push<&'columnar DifferentialEvent> for DifferentialEventContainer<C0, C1, C2, C3, C4, C5>where
C0: Len + Push<&'columnar BatchEvent>,
C1: Len + Push<&'columnar MergeEvent>,
C2: Len + Push<&'columnar DropEvent>,
C3: Len + Push<&'columnar MergeShortfall>,
C4: Len + Push<&'columnar TraceShare>,
C5: Len + Push<&'columnar BatcherEvent>,
Source§fn push(&mut self, item: &'columnar DifferentialEvent)
fn push(&mut self, item: &'columnar DifferentialEvent)
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, C4, C5> Push<DifferentialEvent> for DifferentialEventContainer<C0, C1, C2, C3, C4, C5>where
C0: Len + Push<BatchEvent>,
C1: Len + Push<MergeEvent>,
C2: Len + Push<DropEvent>,
C3: Len + Push<MergeShortfall>,
C4: Len + Push<TraceShare>,
C5: Len + Push<BatcherEvent>,
impl<C0, C1, C2, C3, C4, C5> Push<DifferentialEvent> for DifferentialEventContainer<C0, C1, C2, C3, C4, C5>where
C0: Len + Push<BatchEvent>,
C1: Len + Push<MergeEvent>,
C2: Len + Push<DropEvent>,
C3: Len + Push<MergeShortfall>,
C4: Len + Push<TraceShare>,
C5: Len + Push<BatcherEvent>,
Source§fn push(&mut self, item: DifferentialEvent)
fn push(&mut self, item: DifferentialEvent)
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, C4, C5, R0, R1, R2, R3, R4, R5> Push<DifferentialEventReference<R0, R1, R2, R3, R4, R5>> for DifferentialEventContainer<C0, C1, C2, C3, C4, C5>
impl<C0, C1, C2, C3, C4, C5, R0, R1, R2, R3, R4, R5> Push<DifferentialEventReference<R0, R1, R2, R3, R4, R5>> for DifferentialEventContainer<C0, C1, C2, C3, C4, C5>
Source§fn push(&mut self, item: DifferentialEventReference<R0, R1, R2, R3, R4, R5>)
fn push(&mut self, item: DifferentialEventReference<R0, R1, R2, R3, R4, R5>)
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, C1: Copy, C2: Copy, C3: Copy, C4: Copy, C5: Copy, CVar: Copy, COff: Copy> Copy for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>
Auto Trait Implementations§
impl<C0, C1, C2, C3, C4, C5, CVar, COff> Freeze for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>
impl<C0, C1, C2, C3, C4, C5, CVar, COff> RefUnwindSafe for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>where
C0: RefUnwindSafe,
C1: RefUnwindSafe,
C2: RefUnwindSafe,
C3: RefUnwindSafe,
C4: RefUnwindSafe,
C5: RefUnwindSafe,
CVar: RefUnwindSafe,
COff: RefUnwindSafe,
impl<C0, C1, C2, C3, C4, C5, CVar, COff> Send for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>
impl<C0, C1, C2, C3, C4, C5, CVar, COff> Sync for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>
impl<C0, C1, C2, C3, C4, C5, CVar, COff> Unpin for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>
impl<C0, C1, C2, C3, C4, C5, CVar, COff> UnwindSafe for DifferentialEventContainer<C0, C1, C2, C3, C4, C5, CVar, COff>where
C0: UnwindSafe,
C1: UnwindSafe,
C2: UnwindSafe,
C3: UnwindSafe,
C4: UnwindSafe,
C5: UnwindSafe,
CVar: UnwindSafe,
COff: 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 moreSource§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
Source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
The method of
std::ops::AddAssign
, for types that do not implement AddAssign
.