pub struct BatcherEvent {
    pub operator: usize,
    pub records_diff: isize,
    pub size_diff: isize,
    pub capacity_diff: isize,
    pub allocations_diff: isize,
}Expand description
Either the start or end of a merge event.
Fields§
§operator: usizeOperator identifier.
records_diff: isizeChange in records.
size_diff: isizeChange in used size.
capacity_diff: isizeChange in capacity.
allocations_diff: isizeChange in number of allocations.
Trait Implementations§
Source§impl Clone for BatcherEvent
 
impl Clone for BatcherEvent
Source§fn clone(&self) -> BatcherEvent
 
fn clone(&self) -> BatcherEvent
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 Debug for BatcherEvent
 
impl Debug for BatcherEvent
Source§impl<'de> Deserialize<'de> for BatcherEvent
 
impl<'de> Deserialize<'de> for BatcherEvent
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 From<BatcherEvent> for DifferentialEvent
 
impl From<BatcherEvent> for DifferentialEvent
Source§fn from(e: BatcherEvent) -> Self
 
fn from(e: BatcherEvent) -> Self
Converts to this type from the input type.
Source§impl Ord for BatcherEvent
 
impl Ord for BatcherEvent
Source§fn cmp(&self, other: &BatcherEvent) -> Ordering
 
fn cmp(&self, other: &BatcherEvent) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BatcherEvent
 
impl PartialEq for BatcherEvent
Source§impl PartialOrd for BatcherEvent
 
impl PartialOrd for BatcherEvent
Source§impl Serialize for BatcherEvent
 
impl Serialize for BatcherEvent
impl Eq for BatcherEvent
impl StructuralPartialEq for BatcherEvent
Auto Trait Implementations§
impl Freeze for BatcherEvent
impl RefUnwindSafe for BatcherEvent
impl Send for BatcherEvent
impl Sync for BatcherEvent
impl Unpin for BatcherEvent
impl UnwindSafe for BatcherEvent
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> PreferredContainer for T
 
impl<T> PreferredContainer for T
Source§impl<T> ProgressEventTimestamp for T
 
impl<T> ProgressEventTimestamp for T
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.