pub struct PointStamp<T> {
pub vector: Vec<T>,
}
Expand description
A sequence of timestamps, partially ordered by the product order.
Sequences of different lengths are compared as if extended indefinitely by T::minimum()
.
Sequences are not guaranteed to be “minimal”, and may end with T::minimum()
entries.
Fields§
§vector: Vec<T>
A sequence of timestamps corresponding to timestamps in a sequence of nested scopes.
Implementations§
Trait Implementations§
Source§impl<T> Abomonation for PointStamp<T>
impl<T> Abomonation for PointStamp<T>
Source§impl<T: Clone> Clone for PointStamp<T>
impl<T: Clone> Clone for PointStamp<T>
Source§fn clone(&self) -> PointStamp<T>
fn clone(&self) -> PointStamp<T>
Returns a duplicate 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<T: Columnation> Columnation for PointStamp<T>
impl<T: Columnation> Columnation for PointStamp<T>
Source§type InnerRegion = PointStampStack<<T as Columnation>::InnerRegion>
type InnerRegion = PointStampStack<<T as Columnation>::InnerRegion>
The type of region capable of absorbing allocations owned by
the
Self
type. Note: not allocations of Self
, but of the
things that it owns.Source§impl<T: Debug> Debug for PointStamp<T>
impl<T: Debug> Debug for PointStamp<T>
Source§impl<T: Default> Default for PointStamp<T>
impl<T: Default> Default for PointStamp<T>
Source§fn default() -> PointStamp<T>
fn default() -> PointStamp<T>
Returns the “default value” for a type. Read more
Source§impl<'de, T> Deserialize<'de> for PointStamp<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for PointStamp<T>where
T: 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<T: Hash> Hash for PointStamp<T>
impl<T: Hash> Hash for PointStamp<T>
Source§impl<T: Lattice + Timestamp + Clone> Lattice for PointStamp<T>
impl<T: Lattice + Timestamp + Clone> Lattice for PointStamp<T>
Source§fn join(&self, other: &Self) -> Self
fn join(&self, other: &Self) -> Self
The smallest element greater than or equal to both arguments. Read more
Source§fn meet(&self, other: &Self) -> Self
fn meet(&self, other: &Self) -> Self
The largest element less than or equal to both arguments. Read more
Source§fn join_assign(&mut self, other: &Self)where
Self: Sized,
fn join_assign(&mut self, other: &Self)where
Self: Sized,
Updates
self
to the smallest element greater than or equal to both arguments. Read moreSource§fn meet_assign(&mut self, other: &Self)where
Self: Sized,
fn meet_assign(&mut self, other: &Self)where
Self: Sized,
Updates
self
to the largest element less than or equal to both arguments. Read moreSource§fn advance_by(&mut self, frontier: AntichainRef<'_, Self>)where
Self: Sized,
fn advance_by(&mut self, frontier: AntichainRef<'_, Self>)where
Self: Sized,
Advances self to the largest time indistinguishable under
frontier
. Read moreSource§impl<T: Ord> Ord for PointStamp<T>
impl<T: Ord> Ord for PointStamp<T>
Source§fn cmp(&self, other: &PointStamp<T>) -> Ordering
fn cmp(&self, other: &PointStamp<T>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<T: PartialEq> PartialEq for PointStamp<T>
impl<T: PartialEq> PartialEq for PointStamp<T>
Source§impl<T: PartialOrd> PartialOrd for PointStamp<T>
impl<T: PartialOrd> PartialOrd for PointStamp<T>
Source§impl<T: PartialOrder + Timestamp> PartialOrder for PointStamp<T>
impl<T: PartialOrder + Timestamp> PartialOrder for PointStamp<T>
Source§impl<T: Timestamp> PathSummary<PointStamp<T>> for PointStampSummary<T::Summary>
impl<T: Timestamp> PathSummary<PointStamp<T>> for PointStampSummary<T::Summary>
Source§fn results_in(&self, timestamp: &PointStamp<T>) -> Option<PointStamp<T>>
fn results_in(&self, timestamp: &PointStamp<T>) -> Option<PointStamp<T>>
Advances a timestamp according to the timestamp actions on the path. Read more
Source§fn followed_by(&self, other: &Self) -> Option<Self>
fn followed_by(&self, other: &Self) -> Option<Self>
Composes this path summary with another path summary. Read more
Source§impl<T> Serialize for PointStamp<T>where
T: Serialize,
impl<T> Serialize for PointStamp<T>where
T: Serialize,
Source§impl<T: Timestamp> Timestamp for PointStamp<T>
impl<T: Timestamp> Timestamp for PointStamp<T>
impl<T: Eq> Eq for PointStamp<T>
impl<T> StructuralPartialEq for PointStamp<T>
Auto Trait Implementations§
impl<T> Freeze for PointStamp<T>
impl<T> RefUnwindSafe for PointStamp<T>where
T: RefUnwindSafe,
impl<T> Send for PointStamp<T>where
T: Send,
impl<T> Sync for PointStamp<T>where
T: Sync,
impl<T> Unpin for PointStamp<T>where
T: Unpin,
impl<T> UnwindSafe for PointStamp<T>where
T: 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