pub trait PyTzInfoAccess<'py> {
// Required method
fn get_tzinfo(&self) -> Option<Bound<'py, PyTzInfo>>;
}Expand description
Trait for accessing the components of a struct containing a tzinfo.
Required Methods§
Sourcefn get_tzinfo(&self) -> Option<Bound<'py, PyTzInfo>>
fn get_tzinfo(&self) -> Option<Bound<'py, PyTzInfo>>
Returns the tzinfo (which may be None).
Implementations should conform to the upstream documentation: https://docs.python.org/3/c-api/datetime.html#c.PyDateTime_DATE_GET_TZINFO https://docs.python.org/3/c-api/datetime.html#c.PyDateTime_TIME_GET_TZINFO
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".