pub enum LogTimezone {
Local,
Utc,
Fixed(UtcOffset),
}Expand description
timezone for log
Variants§
Local
local timezone
Only *unix OS is supported for now
Utc
UTC timezone
Fixed(UtcOffset)
fixed timezone
Auto Trait Implementations§
impl Freeze for LogTimezone
impl RefUnwindSafe for LogTimezone
impl Send for LogTimezone
impl Sync for LogTimezone
impl Unpin for LogTimezone
impl UnwindSafe for LogTimezone
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