#[repr(transparent)]pub struct Timedelta<U: Unit>(_, _);Expand description
Corresponds to the [timedelta64][scalars-datetime64] scalar type
Trait Implementations§
source§impl<U: Ord + Unit> Ord for Timedelta<U>
 
impl<U: Ord + Unit> Ord for Timedelta<U>
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<U: PartialEq + Unit> PartialEq<Timedelta<U>> for Timedelta<U>
 
impl<U: PartialEq + Unit> PartialEq<Timedelta<U>> for Timedelta<U>
source§impl<U: PartialOrd + Unit> PartialOrd<Timedelta<U>> for Timedelta<U>
 
impl<U: PartialOrd + Unit> PartialOrd<Timedelta<U>> for Timedelta<U>
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<U: Copy + Unit> Copy for Timedelta<U>
impl<U: Eq + Unit> Eq for Timedelta<U>
impl<U: Unit> StructuralEq for Timedelta<U>
impl<U: Unit> StructuralPartialEq for Timedelta<U>
Auto Trait Implementations§
impl<U> RefUnwindSafe for Timedelta<U>where U: RefUnwindSafe,
impl<U> Send for Timedelta<U>
impl<U> Sync for Timedelta<U>
impl<U> Unpin for Timedelta<U>where U: Unpin,
impl<U> UnwindSafe for Timedelta<U>where U: 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
§impl<SS, SP> SupersetOf<SS> for SPwhere
    SS: SubsetOf<SP>,
 
impl<SS, SP> SupersetOf<SS> for SPwhere SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
 
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct 
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
 
fn is_in_subset(&self) -> bool
Checks if 
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
 
fn to_subset_unchecked(&self) -> SS
Use with care! Same as 
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
 
fn from_subset(element: &SS) -> SP
The inclusion map: converts 
self to the equivalent element of its superset.