pub enum TimeComparison {
EqualTo,
LessThan,
GreaterThan,
Indeterminate,
}Expand description
CosTime::TimeComparison (Spec §1.3.2.7).
Variants§
EqualTo
TCEqualTo.
LessThan
TCLessThan.
GreaterThan
TCGreaterThan.
Indeterminate
TCIndeterminate — wenn die Inaccuracy-Envelopes ueberlappen.
Trait Implementations§
Source§impl Clone for TimeComparison
impl Clone for TimeComparison
Source§fn clone(&self) -> TimeComparison
fn clone(&self) -> TimeComparison
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TimeComparison
impl Debug for TimeComparison
Source§impl PartialEq for TimeComparison
impl PartialEq for TimeComparison
Source§fn eq(&self, other: &TimeComparison) -> bool
fn eq(&self, other: &TimeComparison) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TimeComparison
impl Eq for TimeComparison
impl StructuralPartialEq for TimeComparison
Auto Trait Implementations§
impl Freeze for TimeComparison
impl RefUnwindSafe for TimeComparison
impl Send for TimeComparison
impl Sync for TimeComparison
impl Unpin for TimeComparison
impl UnsafeUnpin for TimeComparison
impl UnwindSafe for TimeComparison
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