Struct timely::progress::timestamp::RootTimestamp
[−]
[src]
pub struct RootTimestamp;
An empty timestamp used by the root scope.
Methods
impl RootTimestamp
[src]
pub fn new<T: Timestamp>(t: T) -> Product<RootTimestamp, T>
[src]
Constructs a new Product<RootTimestamp,T>
.
Trait Implementations
impl Empty for RootTimestamp
[src]
impl Copy for RootTimestamp
[src]
impl Clone for RootTimestamp
[src]
fn clone(&self) -> RootTimestamp
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Hash for RootTimestamp
[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
[src]
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Eq for RootTimestamp
[src]
impl Ord for RootTimestamp
[src]
fn cmp(&self, __arg_0: &RootTimestamp) -> Ordering
[src]
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
Compares and returns the minimum of two values. Read more
impl PartialOrd for RootTimestamp
[src]
fn partial_cmp(&self, __arg_0: &RootTimestamp) -> Option<Ordering>
[src]
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl PartialEq for RootTimestamp
[src]
fn eq(&self, __arg_0: &RootTimestamp) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl Default for RootTimestamp
[src]
fn default() -> RootTimestamp
[src]
Returns the "default value" for a type. Read more
impl Timestamp for RootTimestamp
[src]
type Summary = RootSummary
A type summarizing action on a timestamp along a dataflow path.
impl Debug for RootTimestamp
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter. Read more
impl PartialOrder for RootTimestamp
[src]
fn less_equal(&self, _other: &Self) -> bool
[src]
Returns true iff one element is less than or equal to the other.
fn less_than(&self, other: &Self) -> bool
[src]
Returns true iff one element is strictly less than the other.
impl Abomonation for RootTimestamp
[src]
unsafe fn entomb<W>(&self, _write: &mut W) -> Result<(), Error> where
W: Write,
[src]
W: Write,
Write any additional information about &self
beyond its binary representation. Read more
unsafe fn exhume(&'a mut self, bytes: &'b mut [u8]) -> Option<&'b mut [u8]>
[src]
Recover any information for &mut self
not evident from its binary representation. Read more
fn extent(&self) -> usize
[src]
Reports the number of further bytes required to entomb self
.
impl PathSummary<RootTimestamp> for RootSummary
[src]
fn results_in(&self, _: &RootTimestamp) -> Option<RootTimestamp>
[src]
Advances a timestamp according to the timestamp actions on the path. Read more
fn followed_by(&self, _: &RootSummary) -> Option<RootSummary>
[src]
Composes this path summary with another path summary. Read more