Struct differential_dataflow::trace::description::Description
source · pub struct Description<Time> { /* private fields */ }
Expand description
Describes an interval of partially ordered times.
A Description
indicates a set of partially ordered times, and a moment at which they are
observed. The lower
and upper
frontiers bound the times contained within, and the since
frontier indicates a moment at which the times were observed. If since
is strictly in
advance of lower
, the contained times may be “advanced” to times which appear equivalent to
any time after since
.
Implementations§
source§impl<Time: PartialOrder + Clone> Description<Time>
impl<Time: PartialOrder + Clone> Description<Time>
source§impl<Time> Description<Time>
impl<Time> Description<Time>
Trait Implementations§
source§impl<Time: Clone> Clone for Description<Time>
impl<Time: Clone> Clone for Description<Time>
source§fn clone(&self) -> Description<Time>
fn clone(&self) -> Description<Time>
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<Time: Debug> Debug for Description<Time>
impl<Time: Debug> Debug for Description<Time>
source§impl<'de, Time> Deserialize<'de> for Description<Time>where
Time: Deserialize<'de>,
impl<'de, Time> Deserialize<'de> for Description<Time>where
Time: Deserialize<'de>,
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<Time: PartialEq> PartialEq for Description<Time>
impl<Time: PartialEq> PartialEq for Description<Time>
source§impl<Time> Serialize for Description<Time>where
Time: Serialize,
impl<Time> Serialize for Description<Time>where
Time: Serialize,
impl<Time: Eq> Eq for Description<Time>
Auto Trait Implementations§
impl<Time> Freeze for Description<Time>where
Time: Freeze,
impl<Time> RefUnwindSafe for Description<Time>where
Time: RefUnwindSafe,
impl<Time> Send for Description<Time>where
Time: Send,
impl<Time> Sync for Description<Time>where
Time: Sync,
impl<Time> Unpin for Description<Time>where
Time: Unpin,
impl<Time> UnwindSafe for Description<Time>where
Time: RefUnwindSafe + UnwindSafe,
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> 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
.