pub struct BatchEventContainer<C0, C1> {
pub operator: C0,
pub length: C1,
}Expand description
Derived columnar container for a struct.
Fields§
§operator: C0Container for #names.
length: C1Container for #names.
Trait Implementations§
Source§impl<'a, C0, C1> AsBytes<'a> for BatchEventContainer<C0, C1>
impl<'a, C0, C1> AsBytes<'a> for BatchEventContainer<C0, C1>
Source§impl<C0, C1> Clear for BatchEventContainer<C0, C1>
impl<C0, C1> Clear for BatchEventContainer<C0, C1>
Source§impl<C0: Clone, C1: Clone> Clone for BatchEventContainer<C0, C1>
impl<C0: Clone, C1: Clone> Clone for BatchEventContainer<C0, C1>
Source§fn clone(&self) -> BatchEventContainer<C0, C1>
fn clone(&self) -> BatchEventContainer<C0, C1>
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<BatchEvent> for BatchEventContainer<<usize as Columnar>::Container, <usize as Columnar>::Container>
impl Container<BatchEvent> for BatchEventContainer<<usize as Columnar>::Container, <usize as Columnar>::Container>
Source§impl<C0: Default, C1: Default> Default for BatchEventContainer<C0, C1>
impl<C0: Default, C1: Default> Default for BatchEventContainer<C0, C1>
Source§fn default() -> BatchEventContainer<C0, C1>
fn default() -> BatchEventContainer<C0, C1>
Returns the “default value” for a type. Read more
Source§impl<'de, C0, C1> Deserialize<'de> for BatchEventContainer<C0, C1>where
C0: Deserialize<'de>,
C1: Deserialize<'de>,
impl<'de, C0, C1> Deserialize<'de> for BatchEventContainer<C0, C1>where
C0: Deserialize<'de>,
C1: 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, C1> FromBytes<'columnar> for BatchEventContainer<C0, C1>
impl<'columnar, C0, C1> FromBytes<'columnar> for BatchEventContainer<C0, C1>
Source§impl<'columnar, C0, C1> Index for &'columnar BatchEventContainer<C0, C1>
impl<'columnar, C0, C1> Index for &'columnar BatchEventContainer<C0, C1>
Source§type Ref = BatchEventReference<<&'columnar C0 as Index>::Ref, <&'columnar C1 as Index>::Ref>
type Ref = BatchEventReference<<&'columnar C0 as Index>::Ref, <&'columnar C1 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> Index for BatchEventContainer<C0, C1>
impl<C0, C1> Index for BatchEventContainer<C0, C1>
Source§type Ref = BatchEventReference<<C0 as Index>::Ref, <C1 as Index>::Ref>
type Ref = BatchEventReference<<C0 as Index>::Ref, <C1 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> Len for BatchEventContainer<C0, C1>
impl<C0, C1> Len for BatchEventContainer<C0, C1>
Source§impl<'columnar, C0, C1> Push<&'columnar BatchEvent> for BatchEventContainer<C0, C1>
impl<'columnar, C0, C1> Push<&'columnar BatchEvent> for BatchEventContainer<C0, C1>
Source§fn push(&mut self, item: &'columnar BatchEvent)
fn push(&mut self, item: &'columnar BatchEvent)
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> Push<BatchEvent> for BatchEventContainer<C0, C1>
impl<C0, C1> Push<BatchEvent> for BatchEventContainer<C0, C1>
Source§fn push(&mut self, item: BatchEvent)
fn push(&mut self, item: BatchEvent)
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, R0, R1> Push<BatchEventReference<R0, R1>> for BatchEventContainer<C0, C1>
impl<C0, C1, R0, R1> Push<BatchEventReference<R0, R1>> for BatchEventContainer<C0, C1>
Source§fn push(&mut self, item: BatchEventReference<R0, R1>)
fn push(&mut self, item: BatchEventReference<R0, R1>)
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> Serialize for BatchEventContainer<C0, C1>
impl<C0, C1> Serialize for BatchEventContainer<C0, C1>
impl<C0: Copy, C1: Copy> Copy for BatchEventContainer<C0, C1>
Auto Trait Implementations§
impl<C0, C1> Freeze for BatchEventContainer<C0, C1>
impl<C0, C1> RefUnwindSafe for BatchEventContainer<C0, C1>where
C0: RefUnwindSafe,
C1: RefUnwindSafe,
impl<C0, C1> Send for BatchEventContainer<C0, C1>
impl<C0, C1> Sync for BatchEventContainer<C0, C1>
impl<C0, C1> Unpin for BatchEventContainer<C0, C1>
impl<C0, C1> UnwindSafe for BatchEventContainer<C0, C1>where
C0: UnwindSafe,
C1: 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<'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.