pub struct Interval {
pub months: i32,
pub days: i32,
pub nanos: i64,
}Expand description
Interval type.
Fields§
§months: i32§days: i32§nanos: i64Trait Implementations§
source§impl Ord for Interval
impl Ord for Interval
source§impl PartialEq for Interval
impl PartialEq for Interval
source§impl PartialOrd for Interval
impl PartialOrd for Interval
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for Interval
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