Struct pyo3::ffi::PyDateTime_Time
source · pub struct PyDateTime_Time {
pub ob_base: PyObject,
pub hashcode: isize,
pub hastzinfo: i8,
pub data: [u8; 6],
pub fold: u8,
pub tzinfo: *mut PyObject,
}Expand description
Structure representing a datetime.time.
Fields§
§ob_base: PyObject§hashcode: isizeAvailable on non-
§PyPy only.hastzinfo: i8§data: [u8; 6]Available on non-
§PyPy only.fold: u8Available on non-
§PyPy only.tzinfo: *mut PyObjectSafety
Care should be taken when reading this field. If the time does not have a
tzinfo then CPython may allocate as a _PyDateTime_BaseTime without this field.
Trait Implementations§
source§impl Clone for PyDateTime_Time
impl Clone for PyDateTime_Time
source§fn clone(&self) -> PyDateTime_Time
fn clone(&self) -> PyDateTime_Time
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_Time
impl Debug for PyDateTime_Time
impl Copy for PyDateTime_Time
impl PyLayout<PyTime> for PyDateTime_Time
Available on non-
Py_LIMITED_API only.impl PySizedLayout<PyTime> for PyDateTime_Time
Available on non-
Py_LIMITED_API only.