pub struct Auxtrace<'a> {
pub size: u64,
pub offset: u64,
pub reference: u64,
pub index: u32,
pub tid: u32,
pub cpu: u32,
pub aux_data: RawData<'a>,
}Expand description
Auxtrace data record.
This is usually used with Intel PT, which records the pure Intel PT data.
Fields§
§size: u64Size of aux_data
offset: u64Offset of this trace in the total trace
reference: u64Reference ID
index: u32Index of this trace in the total trace
tid: u32ID of thread that contributes to this trace
cpu: u32ID of CPU that contributes to this trace
aux_data: RawData<'a>Pure data. The length of this data is guaranteed to be consistent
with the size field.
Implementations§
Trait Implementations§
impl<'a> Eq for Auxtrace<'a>
impl<'a> StructuralPartialEq for Auxtrace<'a>
Auto Trait Implementations§
impl<'a> Freeze for Auxtrace<'a>
impl<'a> RefUnwindSafe for Auxtrace<'a>
impl<'a> Send for Auxtrace<'a>
impl<'a> Sync for Auxtrace<'a>
impl<'a> Unpin for Auxtrace<'a>
impl<'a> UnsafeUnpin for Auxtrace<'a>
impl<'a> UnwindSafe for Auxtrace<'a>
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