pub struct TimeZones {
pub time_zones: Vec<TimeZone>,
}
Expand description
Contains a list of time zones
Fields§
§time_zones: Vec<TimeZone>
A list of time zones
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TimeZones
impl<'de> Deserialize<'de> for TimeZones
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for TimeZones
Auto Trait Implementations§
impl Freeze for TimeZones
impl RefUnwindSafe for TimeZones
impl Send for TimeZones
impl Sync for TimeZones
impl Unpin for TimeZones
impl UnwindSafe for TimeZones
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more