Struct EVENT_RECORD
#[repr(C)]pub struct EVENT_RECORD {
pub EventHeader: EVENT_HEADER,
pub BufferContext: ETW_BUFFER_CONTEXT,
pub ExtendedDataCount: u16,
pub UserDataLength: u16,
pub ExtendedData: *mut EVENT_HEADER_EXTENDED_DATA_ITEM,
pub UserData: *mut c_void,
pub UserContext: *mut c_void,
}
Fields§
§EventHeader: EVENT_HEADER
§BufferContext: ETW_BUFFER_CONTEXT
§ExtendedDataCount: u16
§UserDataLength: u16
§ExtendedData: *mut EVENT_HEADER_EXTENDED_DATA_ITEM
§UserData: *mut c_void
§UserContext: *mut c_void
Trait Implementations§
§impl Clone for EVENT_RECORD
impl Clone for EVENT_RECORD
§fn clone(&self) -> EVENT_RECORD
fn clone(&self) -> EVENT_RECORD
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 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