Struct windows_sys::Win32::System::Time::DYNAMIC_TIME_ZONE_INFORMATION
[−]#[repr(C)]pub struct DYNAMIC_TIME_ZONE_INFORMATION {
pub Bias: i32,
pub StandardName: [u16; 32],
pub StandardDate: SYSTEMTIME,
pub StandardBias: i32,
pub DaylightName: [u16; 32],
pub DaylightDate: SYSTEMTIME,
pub DaylightBias: i32,
pub TimeZoneKeyName: [u16; 128],
pub DynamicDaylightTimeDisabled: BOOLEAN,
}
Expand description
Required features: ‘Win32_System_Time’, ‘Win32_Foundation’
Fields
Bias: i32
StandardName: [u16; 32]
StandardDate: SYSTEMTIME
StandardBias: i32
DaylightName: [u16; 32]
DaylightDate: SYSTEMTIME
DaylightBias: i32
TimeZoneKeyName: [u16; 128]
DynamicDaylightTimeDisabled: BOOLEAN
Trait Implementations
impl Clone for DYNAMIC_TIME_ZONE_INFORMATION
impl Clone for DYNAMIC_TIME_ZONE_INFORMATION
impl Copy for DYNAMIC_TIME_ZONE_INFORMATION
Auto Trait Implementations
impl RefUnwindSafe for DYNAMIC_TIME_ZONE_INFORMATION
impl Send for DYNAMIC_TIME_ZONE_INFORMATION
impl Sync for DYNAMIC_TIME_ZONE_INFORMATION
impl Unpin for DYNAMIC_TIME_ZONE_INFORMATION
impl UnwindSafe for DYNAMIC_TIME_ZONE_INFORMATION
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more