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.