#[repr(C)]pub struct pt_packet {
pub type_: pt_packet_type,
pub size: u8,
pub payload: pt_packet__bindgen_ty_1,
}Expand description
An Intel PT packet.
Fields§
§type_: pt_packet_typeThe type of the packet.
This also determines the @payload field.
size: u8The size of the packet including opcode and payload.
payload: pt_packet__bindgen_ty_1Trait Implementations§
Auto Trait Implementations§
impl Freeze for pt_packet
impl RefUnwindSafe for pt_packet
impl !Send for pt_packet
impl !Sync for pt_packet
impl Unpin for pt_packet
impl UnwindSafe for pt_packet
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