pub struct Aux {
pub aux_offset: u64,
pub aux_size: u64,
pub flags: AuxFlags,
}
Expand description
AUX records indicate that new data is available in the aux buffer region.
This struct corresponds to PERF_RECORD_AUX
. See the manpage for more
documentation.
Fields§
§aux_offset: u64
§aux_size: u64
§flags: AuxFlags
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Aux
impl RefUnwindSafe for Aux
impl Send for Aux
impl Sync for Aux
impl Unpin for Aux
impl UnwindSafe for Aux
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