Union USN_RECORD_UNION
#[repr(C)]
pub union USN_RECORD_UNION {
pub Header: USN_RECORD_COMMON_HEADER,
pub V2: USN_RECORD_V2,
pub V3: USN_RECORD_V3,
pub V4: USN_RECORD_V4,
}
Fields§
§Header: USN_RECORD_COMMON_HEADER
§V2: USN_RECORD_V2
§V3: USN_RECORD_V3
§V4: USN_RECORD_V4
Trait Implementations§
§impl Clone for USN_RECORD_UNION
impl Clone for USN_RECORD_UNION
§fn clone(&self) -> USN_RECORD_UNION
fn clone(&self) -> USN_RECORD_UNION
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 USN_RECORD_UNION
Auto Trait Implementations§
impl Freeze for USN_RECORD_UNION
impl RefUnwindSafe for USN_RECORD_UNION
impl Send for USN_RECORD_UNION
impl Sync for USN_RECORD_UNION
impl Unpin for USN_RECORD_UNION
impl UnwindSafe for USN_RECORD_UNION
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