Struct differential_dataflow::logging::BatcherEvent
source · 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: usize
Operator identifier.
records_diff: isize
Change in records.
size_diff: isize
Change in used size.
capacity_diff: isize
Change in capacity.
allocations_diff: isize
Change 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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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
.