#[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§
Source§impl Clone for EVENT_RECORD
impl Clone for EVENT_RECORD
Source§fn clone(&self) -> EVENT_RECORD
fn clone(&self) -> EVENT_RECORD
Returns a duplicate 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 moreSource§impl Default for EVENT_RECORD
impl Default for EVENT_RECORD
Source§fn default() -> EVENT_RECORD
fn default() -> EVENT_RECORD
Returns the “default value” for a type. Read more
impl Copy for EVENT_RECORD
Auto Trait Implementations§
impl Freeze for EVENT_RECORD
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§
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