Struct pyo3::ffi::PyDateTime_Time [−][src]
#[repr(C)]pub struct PyDateTime_Time {
pub ob_base: PyObject,
pub hashcode: Py_hash_t,
pub hastzinfo: c_char,
pub data: [c_uchar; 6],
pub fold: c_uchar,
pub tzinfo: *mut PyObject,
}
Expand description
Structure representing a datetime.time
.
Fields
ob_base: PyObject
hashcode: Py_hash_t
hastzinfo: c_char
data: [c_uchar; 6]
fold: c_uchar
tzinfo: *mut PyObject
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for PyDateTime_Time
impl !Send for PyDateTime_Time
impl !Sync for PyDateTime_Time
impl Unpin for PyDateTime_Time
impl UnwindSafe for PyDateTime_Time
Blanket Implementations
Mutably borrows from an owned value. Read more