Struct dogsdogsdogs::altneu::AltNeu
source · pub struct AltNeu<T> {
pub time: T,
pub neu: bool,
}Expand description
A pair of timestamps, partially ordered by the product order.
Fields§
§time: T§neu: boolImplementations§
Trait Implementations§
source§impl<'de, T> Deserialize<'de> for AltNeu<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for AltNeu<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: Lattice> Lattice for AltNeu<T>
impl<T: Lattice> Lattice for AltNeu<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 AltNeu<T>
impl<T: Ord> Ord for AltNeu<T>
source§impl<T: PartialOrd> PartialOrd for AltNeu<T>
impl<T: PartialOrd> PartialOrd for AltNeu<T>
source§impl<T: PartialOrder> PartialOrder for AltNeu<T>
impl<T: PartialOrder> PartialOrder for AltNeu<T>
impl<T: Eq> Eq for AltNeu<T>
impl<T> StructuralPartialEq for AltNeu<T>
Auto Trait Implementations§
impl<T> Freeze for AltNeu<T>where
T: Freeze,
impl<T> RefUnwindSafe for AltNeu<T>where
T: RefUnwindSafe,
impl<T> Send for AltNeu<T>where
T: Send,
impl<T> Sync for AltNeu<T>where
T: Sync,
impl<T> Unpin for AltNeu<T>where
T: Unpin,
impl<T> UnwindSafe for AltNeu<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
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> PreferredContainer for T
impl<T> PreferredContainer for T
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.