#[repr(C)]pub struct EVENT_RECORD {
pub EventHeader: EVENT_HEADER,
pub BufferContext: ETW_BUFFER_CONTEXT,
pub ExtendedDataCount: USHORT,
pub UserDataLength: USHORT,
pub ExtendedData: PEVENT_HEADER_EXTENDED_DATA_ITEM,
pub UserData: PVOID,
pub UserContext: PVOID,
}
Fields
EventHeader: EVENT_HEADER
BufferContext: ETW_BUFFER_CONTEXT
ExtendedDataCount: USHORT
UserDataLength: USHORT
ExtendedData: PEVENT_HEADER_EXTENDED_DATA_ITEM
UserData: PVOID
UserContext: PVOID
Trait Implementations
sourceimpl Clone for EVENT_RECORD
impl Clone for EVENT_RECORD
sourcefn clone(&self) -> EVENT_RECORD
fn clone(&self) -> EVENT_RECORD
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 EVENT_RECORD
Auto Trait Implementations
impl RefUnwindSafe for EVENT_RECORD
impl !Send for EVENT_RECORD
impl !Sync for EVENT_RECORD
impl Unpin for EVENT_RECORD
impl UnwindSafe for EVENT_RECORD
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