Struct differential_dataflow::trace::description::Description
[−]
[src]
pub struct Description<Time> { /* fields omitted */ }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.
Methods
impl<Time: Clone> Description<Time>[src]
pub fn new(lower: &[Time], upper: &[Time], since: &[Time]) -> Self[src]
Returns a new description from its component parts.
impl<Time> Description<Time>[src]
pub fn lower(&self) -> &[Time][src]
The lower envelope for times in the interval.
pub fn upper(&self) -> &[Time][src]
The upper envelope for times in the interval.
pub fn since(&self) -> &[Time][src]
Times from whose future the interval may be observed.
Trait Implementations
impl<Time: Clone> Clone for Description<Time>[src]
fn clone(&self) -> Description<Time>[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<Time: Debug> Debug for Description<Time>[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl<Time> Abomonation for Description<Time> where
Vec<Time>: Abomonation,
Time: Abomonation, [src]
Vec<Time>: Abomonation,
Time: Abomonation,
unsafe fn entomb<W: Write>(&self, _write: &mut W) -> Result<()>[src]
Write any additional information about &self beyond its binary representation. Read more
fn extent(&self) -> usize[src]
Reports 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]
&'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
Auto Trait Implementations
impl<Time> Send for Description<Time> where
Time: Send,
Time: Send,
impl<Time> Sync for Description<Time> where
Time: Sync,
Time: Sync,