Trait pyo3::types::PyTimeAccess
source · pub trait PyTimeAccess {
// Required methods
fn get_hour(&self) -> u8;
fn get_minute(&self) -> u8;
fn get_second(&self) -> u8;
fn get_microsecond(&self) -> u32;
fn get_fold(&self) -> bool;
}
Py_LIMITED_API
only.Expand description
Trait for accessing the time components of a struct containing a time.
Required Methods§
sourcefn get_hour(&self) -> u8
fn get_hour(&self) -> u8
Returns the hour, as an int from 0 through 23.
Implementations should conform to the upstream documentation: https://docs.python.org/3/c-api/datetime.html#c.PyDateTime_DATE_GET_HOUR
sourcefn get_minute(&self) -> u8
fn get_minute(&self) -> u8
Returns the minute, as an int from 0 through 59.
Implementations should conform to the upstream documentation: https://docs.python.org/3/c-api/datetime.html#c.PyDateTime_DATE_GET_MINUTE
sourcefn get_second(&self) -> u8
fn get_second(&self) -> u8
Returns the second, as an int from 0 through 59.
Implementations should conform to the upstream documentation: https://docs.python.org/3/c-api/datetime.html#c.PyDateTime_DATE_GET_SECOND
sourcefn get_microsecond(&self) -> u32
fn get_microsecond(&self) -> u32
Returns the microsecond, as an int from 0 through 999999.
Implementations should conform to the upstream documentation: https://docs.python.org/3/c-api/datetime.html#c.PyDateTime_DATE_GET_MICROSECOND