pub enum TimeZone {
Local,
Utc,
}Expand description
Time zone indicator (Local or UTC/Zulu).
Variants§
Local
Local time without an offset, or local time with a timezone offset
Utc
Coordinated Universal Time (indicated by ‘Z’ suffix)
Trait Implementations§
impl Copy for TimeZone
impl Eq for TimeZone
impl Structural 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 UnsafeUnpin 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