pub enum Bound {
NegativeInfinity,
Date(BoundDate),
PositiveInfinity,
Unknown,
}Expand description
One side of a Bounds result.
Variants§
NegativeInfinity
Unbounded in the past (open interval start, ..date endpoints).
Date(BoundDate)
A concrete calendar day.
PositiveInfinity
Unbounded in the future (open interval end, date.. endpoints).
Unknown
Not determinable: unknown interval endpoints, or year values beyond the numeric range this library computes with.
Trait Implementations§
impl Copy for Bound
impl Eq for Bound
impl StructuralPartialEq for Bound
Auto Trait Implementations§
impl Freeze for Bound
impl RefUnwindSafe for Bound
impl Send for Bound
impl Sync for Bound
impl Unpin for Bound
impl UnsafeUnpin for Bound
impl UnwindSafe for Bound
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