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
sourceimpl<Time: Clone> Description<Time>
impl<Time: Clone> Description<Time>
Trait Implementations
sourceimpl<Time> Abomonation for Description<Time>where
Vec<Time>: Abomonation,
Time: Abomonation,
impl<Time> Abomonation for Description<Time>where
Vec<Time>: Abomonation,
Time: Abomonation,
sourceimpl<Time: Clone> Clone for Description<Time>
impl<Time: Clone> Clone for Description<Time>
sourcefn clone(&self) -> Description<Time>
fn clone(&self) -> Description<Time>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations
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: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more