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§fn array_from_view<D>(
_py: Python<'_>,
view: ArrayView<'_, Self, D>,
) -> Array<Self, D>where
D: Dimension,
fn array_from_view<D>(
_py: Python<'_>,
view: ArrayView<'_, Self, D>,
) -> Array<Self, D>where
D: Dimension,
Create an owned copy of the array while the GIL is guaranteed to be held. Read more
Source§fn get_dtype_bound(py: Python<'_>) -> Bound<'_, PyArrayDescr>
fn get_dtype_bound(py: Python<'_>) -> Bound<'_, PyArrayDescr>
👎Deprecated since 0.23.0: renamed to
Element::get_dtype
Deprecated name for
Element::get_dtype
.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