#[repr(C)]pub struct PyDateTime_DateTime {
pub ob_base: PyObject,
pub hashcode: isize,
pub hastzinfo: i8,
pub data: [u8; 10],
pub fold: u8,
pub tzinfo: *mut PyObject,
}
Expand description
Structure representing a datetime.datetime
.
Fields§
§ob_base: PyObject
§hashcode: isize
Available on neither
§PyPy
nor GraalPy
.hastzinfo: i8
Available on non-
§GraalPy
only.data: [u8; 10]
Available on neither
§PyPy
nor GraalPy
.fold: u8
Available on neither
§PyPy
nor GraalPy
.tzinfo: *mut PyObject
Available on non-
GraalPy
only.§Safety
Care should be taken when reading this field. If the time does not have a
tzinfo then CPython may allocate as a _PyDateTime_BaseDateTime
without this field.
Trait Implementations§
Source§impl Debug for PyDateTime_DateTime
impl Debug for PyDateTime_DateTime
impl PyLayout<PyDateTime> for PyDateTime_DateTime
Available on non-
Py_LIMITED_API
only.impl PySizedLayout<PyDateTime> for PyDateTime_DateTime
Available on non-
Py_LIMITED_API
only.Auto Trait Implementations§
impl Freeze for PyDateTime_DateTime
impl RefUnwindSafe for PyDateTime_DateTime
impl !Send for PyDateTime_DateTime
impl !Sync for PyDateTime_DateTime
impl Unpin for PyDateTime_DateTime
impl UnwindSafe for PyDateTime_DateTime
Blanket Implementations§
Source§impl<T> AssertNotZeroSized for T
impl<T> AssertNotZeroSized for T
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more