pub trait TableTransitions {
// Required method
fn timespans(&self, zone_name: &str) -> Option<FixedTimespanSet>;
}Expand description
Trait to put the timespans method on Tables.
Required Methods§
Sourcefn timespans(&self, zone_name: &str) -> Option<FixedTimespanSet>
fn timespans(&self, zone_name: &str) -> Option<FixedTimespanSet>
Computes a fixed timespan set for the timezone with the given name.
Returns None if the table doesn’t contain a time zone with that name.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".