pub struct BatcherEventReference<R0, R1, R2, R3, R4> {
pub operator: R0,
pub records_diff: R1,
pub size_diff: R2,
pub capacity_diff: R3,
pub allocations_diff: R4,
}
Expand description
Derived columnar reference for a struct.
Fields§
§operator: R0
Field for #names.
records_diff: R1
Field for #names.
size_diff: R2
Field for #names.
capacity_diff: R3
Field for #names.
allocations_diff: R4
Field for #names.
Trait Implementations§
Source§impl<R0: Clone, R1: Clone, R2: Clone, R3: Clone, R4: Clone> Clone for BatcherEventReference<R0, R1, R2, R3, R4>
impl<R0: Clone, R1: Clone, R2: Clone, R3: Clone, R4: Clone> Clone for BatcherEventReference<R0, R1, R2, R3, R4>
Source§fn clone(&self) -> BatcherEventReference<R0, R1, R2, R3, R4>
fn clone(&self) -> BatcherEventReference<R0, R1, R2, R3, R4>
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<R0: Debug, R1: Debug, R2: Debug, R3: Debug, R4: Debug> Debug for BatcherEventReference<R0, R1, R2, R3, R4>
impl<R0: Debug, R1: Debug, R2: Debug, R3: Debug, R4: Debug> Debug for BatcherEventReference<R0, R1, R2, R3, R4>
Source§impl<R0, R1, R2, R3, R4> PartialEq<BatcherEvent> for BatcherEventReference<R0, R1, R2, R3, R4>
impl<R0, R1, R2, R3, R4> PartialEq<BatcherEvent> for BatcherEventReference<R0, R1, R2, R3, R4>
Source§impl<C0, C1, C2, C3, C4, R0, R1, R2, R3, R4> Push<BatcherEventReference<R0, R1, R2, R3, R4>> for BatcherEventContainer<C0, C1, C2, C3, C4>
impl<C0, C1, C2, C3, C4, R0, R1, R2, R3, R4> Push<BatcherEventReference<R0, R1, R2, R3, R4>> for BatcherEventContainer<C0, C1, C2, C3, C4>
Source§fn push(&mut self, item: BatcherEventReference<R0, R1, R2, R3, R4>)
fn push(&mut self, item: BatcherEventReference<R0, R1, R2, R3, R4>)
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<R0: Copy, R1: Copy, R2: Copy, R3: Copy, R4: Copy> Copy for BatcherEventReference<R0, R1, R2, R3, R4>
Auto Trait Implementations§
impl<R0, R1, R2, R3, R4> Freeze for BatcherEventReference<R0, R1, R2, R3, R4>
impl<R0, R1, R2, R3, R4> RefUnwindSafe for BatcherEventReference<R0, R1, R2, R3, R4>where
R0: RefUnwindSafe,
R1: RefUnwindSafe,
R2: RefUnwindSafe,
R3: RefUnwindSafe,
R4: RefUnwindSafe,
impl<R0, R1, R2, R3, R4> Send for BatcherEventReference<R0, R1, R2, R3, R4>
impl<R0, R1, R2, R3, R4> Sync for BatcherEventReference<R0, R1, R2, R3, R4>
impl<R0, R1, R2, R3, R4> Unpin for BatcherEventReference<R0, R1, R2, R3, R4>
impl<R0, R1, R2, R3, R4> UnwindSafe for BatcherEventReference<R0, R1, R2, R3, R4>
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
.