pub struct Datetime<U: Unit>(/* private fields */);Expand description
Corresponds to the datetime64 scalar type
Trait Implementations§
Source§impl<U: Unit> Element for Datetime<U>
 
impl<U: Unit> Element for Datetime<U>
Source§const IS_COPY: bool = true
 
const IS_COPY: bool = true
Flag that indicates whether this type is trivially copyable. Read more
Source§fn get_dtype(py: Python<'_>) -> Bound<'_, PyArrayDescr>
 
fn get_dtype(py: Python<'_>) -> Bound<'_, PyArrayDescr>
Returns the associated type descriptor (“dtype”) for the given element type.
Source§fn clone_ref(&self, _py: Python<'_>) -> Self
 
fn clone_ref(&self, _py: Python<'_>) -> Self
Create a clone of the value while the GIL is guaranteed to be held.
Source§fn vec_from_slice(_py: Python<'_>, slc: &[Self]) -> Vec<Self>
 
fn vec_from_slice(_py: Python<'_>, slc: &[Self]) -> Vec<Self>
Create an owned copy of the slice while the GIL is guaranteed to be held. Read more
Source§impl<U: Ord + Unit> Ord for Datetime<U>
 
impl<U: Ord + Unit> Ord for Datetime<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: PartialOrd + Unit> PartialOrd for Datetime<U>
 
impl<U: PartialOrd + Unit> PartialOrd for Datetime<U>
impl<U: Copy + Unit> Copy for Datetime<U>
impl<U: Eq + Unit> Eq for Datetime<U>
impl<U: Unit> StructuralPartialEq for Datetime<U>
Auto Trait Implementations§
impl<U> Freeze for Datetime<U>
impl<U> RefUnwindSafe for Datetime<U>where
    U: RefUnwindSafe,
impl<U> Send for Datetime<U>
impl<U> Sync for Datetime<U>
impl<U> Unpin for Datetime<U>where
    U: Unpin,
impl<U> UnwindSafe for Datetime<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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
§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.