#[repr(u32)]pub enum perf_event_sample_format {
Show 26 variants
PERF_SAMPLE_IP = 1,
PERF_SAMPLE_TID = 2,
PERF_SAMPLE_TIME = 4,
PERF_SAMPLE_ADDR = 8,
PERF_SAMPLE_READ = 16,
PERF_SAMPLE_CALLCHAIN = 32,
PERF_SAMPLE_ID = 64,
PERF_SAMPLE_CPU = 128,
PERF_SAMPLE_PERIOD = 256,
PERF_SAMPLE_STREAM_ID = 512,
PERF_SAMPLE_RAW = 1_024,
PERF_SAMPLE_BRANCH_STACK = 2_048,
PERF_SAMPLE_REGS_USER = 4_096,
PERF_SAMPLE_STACK_USER = 8_192,
PERF_SAMPLE_WEIGHT = 16_384,
PERF_SAMPLE_DATA_SRC = 32_768,
PERF_SAMPLE_IDENTIFIER = 65_536,
PERF_SAMPLE_TRANSACTION = 131_072,
PERF_SAMPLE_REGS_INTR = 262_144,
PERF_SAMPLE_PHYS_ADDR = 524_288,
PERF_SAMPLE_AUX = 1_048_576,
PERF_SAMPLE_CGROUP = 2_097_152,
PERF_SAMPLE_DATA_PAGE_SIZE = 4_194_304,
PERF_SAMPLE_CODE_PAGE_SIZE = 8_388_608,
PERF_SAMPLE_WEIGHT_STRUCT = 16_777_216,
PERF_SAMPLE_MAX = 33_554_432,
}Variants§
PERF_SAMPLE_IP = 1
PERF_SAMPLE_TID = 2
PERF_SAMPLE_TIME = 4
PERF_SAMPLE_ADDR = 8
PERF_SAMPLE_READ = 16
PERF_SAMPLE_CALLCHAIN = 32
PERF_SAMPLE_ID = 64
PERF_SAMPLE_CPU = 128
PERF_SAMPLE_PERIOD = 256
PERF_SAMPLE_STREAM_ID = 512
PERF_SAMPLE_RAW = 1_024
PERF_SAMPLE_BRANCH_STACK = 2_048
PERF_SAMPLE_REGS_USER = 4_096
PERF_SAMPLE_STACK_USER = 8_192
PERF_SAMPLE_WEIGHT = 16_384
PERF_SAMPLE_DATA_SRC = 32_768
PERF_SAMPLE_IDENTIFIER = 65_536
PERF_SAMPLE_TRANSACTION = 131_072
PERF_SAMPLE_REGS_INTR = 262_144
PERF_SAMPLE_PHYS_ADDR = 524_288
PERF_SAMPLE_AUX = 1_048_576
PERF_SAMPLE_CGROUP = 2_097_152
PERF_SAMPLE_DATA_PAGE_SIZE = 4_194_304
PERF_SAMPLE_CODE_PAGE_SIZE = 8_388_608
PERF_SAMPLE_WEIGHT_STRUCT = 16_777_216
PERF_SAMPLE_MAX = 33_554_432
Trait Implementations§
Source§impl Clone for perf_event_sample_format
impl Clone for perf_event_sample_format
Source§fn clone(&self) -> perf_event_sample_format
fn clone(&self) -> perf_event_sample_format
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 Debug for perf_event_sample_format
impl Debug for perf_event_sample_format
Source§impl From<perf_event_sample_format> for u32
impl From<perf_event_sample_format> for u32
Source§fn from(v: perf_event_sample_format) -> Self
fn from(v: perf_event_sample_format) -> Self
Converts to this type from the input type.
Source§impl Hash for perf_event_sample_format
impl Hash for perf_event_sample_format
Source§impl PartialEq for perf_event_sample_format
impl PartialEq for perf_event_sample_format
Source§impl TryFrom<u32> for perf_event_sample_format
impl TryFrom<u32> for perf_event_sample_format
impl Copy for perf_event_sample_format
impl Eq for perf_event_sample_format
impl StructuralPartialEq for perf_event_sample_format
Auto Trait Implementations§
impl Freeze for perf_event_sample_format
impl RefUnwindSafe for perf_event_sample_format
impl Send for perf_event_sample_format
impl Sync for perf_event_sample_format
impl Unpin for perf_event_sample_format
impl UnsafeUnpin for perf_event_sample_format
impl UnwindSafe for perf_event_sample_format
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more