pub enum Interval {
Closed(Version, bool),
Open(Version, bool),
Unbounded,
}
Variants§
Implementations§
Source§impl Interval
impl Interval
Sourcepub fn cmp(&self, other: &Interval, lower: bool) -> Ordering
pub fn cmp(&self, other: &Interval, lower: bool) -> Ordering
Compares two Interval
s and returns an ordering. Unfortunately we can’t use the Ord trait
beacuse of the extra parameter lower
.
pub fn min<'a>(&'a self, other: &'a Interval, lower: bool) -> &'a Interval
pub fn max<'a>(&'a self, other: &'a Interval, lower: bool) -> &'a Interval
pub fn flip(self) -> Interval
pub fn pre_ok(&self) -> bool
pub fn show(&self, lower: bool) -> String
Trait Implementations§
impl Eq for Interval
impl StructuralPartialEq for Interval
Auto Trait Implementations§
impl Freeze for Interval
impl RefUnwindSafe for Interval
impl Send for Interval
impl Sync for Interval
impl Unpin for Interval
impl UnwindSafe for Interval
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more