#[repr(C)]pub struct WTS_TIME_ZONE_INFORMATION {
pub Bias: i32,
pub StandardName: [u16; 32],
pub StandardDate: WTS_SYSTEMTIME,
pub StandardBias: i32,
pub DaylightName: [u16; 32],
pub DaylightDate: WTS_SYSTEMTIME,
pub DaylightBias: i32,
}
Expand description
Required features: "Win32_System_RemoteDesktop"
Fields
Bias: i32
StandardName: [u16; 32]
StandardDate: WTS_SYSTEMTIME
StandardBias: i32
DaylightName: [u16; 32]
DaylightDate: WTS_SYSTEMTIME
DaylightBias: i32
Trait Implementations
impl Clone for WTS_TIME_ZONE_INFORMATION
impl Clone for WTS_TIME_ZONE_INFORMATION
impl Copy for WTS_TIME_ZONE_INFORMATION
Auto Trait Implementations
impl RefUnwindSafe for WTS_TIME_ZONE_INFORMATION
impl Send for WTS_TIME_ZONE_INFORMATION
impl Sync for WTS_TIME_ZONE_INFORMATION
impl Unpin for WTS_TIME_ZONE_INFORMATION
impl UnwindSafe for WTS_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 · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more