Struct differential_dataflow::logging::MergeEvent [−][src]
pub struct MergeEvent {
pub operator: usize,
pub scale: usize,
pub length1: usize,
pub length2: usize,
pub complete: Option<usize>,
}Either the start or end of a merge event.
Fields
operator: usize
Operator identifier.
scale: usize
Which order of magnitude.
length1: usize
Length of first trace.
length2: usize
Length of second trace.
complete: Option<usize>
None implies a start.
Trait Implementations
impl Debug for MergeEvent[src]
impl Debug for MergeEventfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for MergeEvent[src]
impl Clone for MergeEventfn clone(&self) -> MergeEvent[src]
fn clone(&self) -> MergeEventReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Abomonation for MergeEvent[src]
impl Abomonation for MergeEventunsafe fn entomb<W: Write>(&self, _write: &mut W) -> Result<()>[src]
unsafe fn entomb<W: Write>(&self, _write: &mut W) -> Result<()>Write any additional information about &self beyond its binary representation. Read more
fn extent(&self) -> usize[src]
fn extent(&self) -> usizeReports the number of further bytes required to entomb self.
unsafe fn exhume<'a, 'b>(
&'a mut self,
bytes: &'b mut [u8]
) -> Option<&'b mut [u8]>[src]
unsafe fn exhume<'a, 'b>(
&'a mut self,
bytes: &'b mut [u8]
) -> Option<&'b mut [u8]>Recover any information for &mut self not evident from its binary representation. Read more
impl Ord for MergeEvent[src]
impl Ord for MergeEventfn cmp(&self, other: &MergeEvent) -> Ordering[src]
fn cmp(&self, other: &MergeEvent) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl PartialOrd for MergeEvent[src]
impl PartialOrd for MergeEventfn partial_cmp(&self, other: &MergeEvent) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &MergeEvent) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &MergeEvent) -> bool[src]
fn lt(&self, other: &MergeEvent) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &MergeEvent) -> bool[src]
fn le(&self, other: &MergeEvent) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &MergeEvent) -> bool[src]
fn gt(&self, other: &MergeEvent) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &MergeEvent) -> bool[src]
fn ge(&self, other: &MergeEvent) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Eq for MergeEvent[src]
impl Eq for MergeEventimpl PartialEq for MergeEvent[src]
impl PartialEq for MergeEventfn eq(&self, other: &MergeEvent) -> bool[src]
fn eq(&self, other: &MergeEvent) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &MergeEvent) -> bool[src]
fn ne(&self, other: &MergeEvent) -> boolThis method tests for !=.
impl From<MergeEvent> for DifferentialEvent[src]
impl From<MergeEvent> for DifferentialEventfn from(e: MergeEvent) -> Self[src]
fn from(e: MergeEvent) -> SelfPerforms the conversion.
Auto Trait Implementations
impl Send for MergeEvent
impl Send for MergeEventimpl Sync for MergeEvent
impl Sync for MergeEvent