pub struct TimeZone {
pub adjustment_time: u64,
pub offset: i64,
}
Expand description
Time zone information for the session.
See RFC 4566 Section 5.11 for more details.
Fields§
§adjustment_time: u64
Time in seconds since 1900 when the adjustment happens.
offset: i64
Amount of the adjustment in seconds.
Trait Implementations§
impl Eq for TimeZone
impl StructuralPartialEq for TimeZone
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