Struct ntapi::ntrtl::RTL_TIME_ZONE_INFORMATION
source · [−]#[repr(C)]pub struct RTL_TIME_ZONE_INFORMATION {
pub Bias: LONG,
pub StandardName: [WCHAR; 32],
pub StandardStart: TIME_FIELDS,
pub StandardBias: LONG,
pub DaylightName: [WCHAR; 32],
pub DaylightStart: TIME_FIELDS,
pub DaylightBias: LONG,
}
Fields
Bias: LONG
StandardName: [WCHAR; 32]
StandardStart: TIME_FIELDS
StandardBias: LONG
DaylightName: [WCHAR; 32]
DaylightStart: TIME_FIELDS
DaylightBias: LONG
Trait Implementations
sourceimpl Clone for RTL_TIME_ZONE_INFORMATION
impl Clone for RTL_TIME_ZONE_INFORMATION
sourcefn clone(&self) -> RTL_TIME_ZONE_INFORMATION
fn clone(&self) -> RTL_TIME_ZONE_INFORMATION
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for RTL_TIME_ZONE_INFORMATION
Auto Trait Implementations
impl RefUnwindSafe for RTL_TIME_ZONE_INFORMATION
impl Send for RTL_TIME_ZONE_INFORMATION
impl Sync for RTL_TIME_ZONE_INFORMATION
impl Unpin for RTL_TIME_ZONE_INFORMATION
impl UnwindSafe for RTL_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