#[repr(C)]pub struct LargeInteger {
pub low: u32,
pub high: i32,
}Expand description
Windows LARGE_INTEGER - 64-bit signed integer as two 32-bit halves.
Fields§
§low: u32§high: i32Auto Trait Implementations§
impl Freeze for LargeInteger
impl RefUnwindSafe for LargeInteger
impl Send for LargeInteger
impl Sync for LargeInteger
impl Unpin for LargeInteger
impl UnsafeUnpin for LargeInteger
impl UnwindSafe for LargeInteger
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