Trait IsTimezone

Source
pub trait IsTimezone: HasGeometry + HasProperties {
    // Required method
    fn identifier(&self) -> &str;
}
Expand description

A trait for types that are a timezone and have a [Geometry].

Helps abstract away this property so the helper methods can be generalized.

Required Methods§

Source

fn identifier(&self) -> &str

Get the identifier of the IsTimezone.

Implementors§