#[repr(C)]
pub union LARGE_INTEGER {
pub s: LARGE_INTEGER_s,
pub u: LARGE_INTEGER_u,
pub QuadPart: LONGLONG,
/* private fields */
}
Fields§
§s: LARGE_INTEGER_s
§u: LARGE_INTEGER_u
§QuadPart: LONGLONG
Trait Implementations§
Source§impl Clone for LARGE_INTEGER
impl Clone for LARGE_INTEGER
Source§fn clone(&self) -> LARGE_INTEGER
fn clone(&self) -> LARGE_INTEGER
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for LARGE_INTEGER
Auto Trait Implementations§
impl Freeze for LARGE_INTEGER
impl RefUnwindSafe for LARGE_INTEGER
impl Send for LARGE_INTEGER
impl Sync for LARGE_INTEGER
impl Unpin for LARGE_INTEGER
impl UnwindSafe for LARGE_INTEGER
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