#[repr(C)]pub struct PyDateTime_Delta {
pub ob_base: PyObject,
pub hashcode: Py_hash_t,
pub days: c_int,
pub seconds: c_int,
pub microseconds: c_int,
}
Available on non-
Py_LIMITED_API
only.Expand description
Structure representing a datetime.timedelta
.
Fields§
§ob_base: PyObject
§hashcode: Py_hash_t
Available on neither
§PyPy
nor GraalPy
.days: c_int
Available on non-
§GraalPy
only.seconds: c_int
Available on non-
§GraalPy
only.microseconds: c_int
Available on non-
GraalPy
only.Trait Implementations§
Source§impl Clone for PyDateTime_Delta
impl Clone for PyDateTime_Delta
Source§fn clone(&self) -> PyDateTime_Delta
fn clone(&self) -> PyDateTime_Delta
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PyDateTime_Delta
impl Debug for PyDateTime_Delta
impl Copy for PyDateTime_Delta
Auto Trait Implementations§
impl Freeze for PyDateTime_Delta
impl RefUnwindSafe for PyDateTime_Delta
impl !Send for PyDateTime_Delta
impl !Sync for PyDateTime_Delta
impl Unpin for PyDateTime_Delta
impl UnwindSafe for PyDateTime_Delta
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,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)