Struct pyo3_ffi::_PyDateTime_BaseTime
source · #[repr(C)]pub struct _PyDateTime_BaseTime {
pub ob_base: PyObject,
pub hashcode: Py_hash_t,
pub hastzinfo: c_char,
pub data: [c_uchar; 6],
}
Expand description
Structure representing a datetime.time
without a tzinfo
member.
Fields§
§ob_base: PyObject
§hashcode: Py_hash_t
§hastzinfo: c_char
§data: [c_uchar; 6]
Trait Implementations§
source§impl Clone for _PyDateTime_BaseTime
impl Clone for _PyDateTime_BaseTime
source§fn clone(&self) -> _PyDateTime_BaseTime
fn clone(&self) -> _PyDateTime_BaseTime
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 more