pub struct Timezone {
pub name: String,
pub now_in_dst: i16,
pub offset_sec: i32,
pub offset_string: String,
pub short_name: String,
}
Expand description
Timezone metadata
Fields§
§name: String
§now_in_dst: i16
§offset_sec: i32
§offset_string: String
§short_name: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Timezone
impl<'de> Deserialize<'de> for Timezone
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
Auto Trait Implementations§
impl Freeze for Timezone
impl RefUnwindSafe for Timezone
impl Send for Timezone
impl Sync for Timezone
impl Unpin for Timezone
impl UnwindSafe for Timezone
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