pub struct FeatureSet(pub [u64; 4]);
Expand description
The set of features used in the perf file. The perf file contains one feature section for each feature.
This set is provided in the perf file header. It has room for 4 * 64 = 256 feature bits.
Tuple Fields§
§0: [u64; 4]
Implementations§
Source§impl FeatureSet
impl FeatureSet
Trait Implementations§
Source§impl Clone for FeatureSet
impl Clone for FeatureSet
Source§fn clone(&self) -> FeatureSet
fn clone(&self) -> FeatureSet
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FeatureSet
impl Debug for FeatureSet
Source§impl Hash for FeatureSet
impl Hash for FeatureSet
Source§impl PartialEq for FeatureSet
impl PartialEq for FeatureSet
impl Copy for FeatureSet
impl Eq for FeatureSet
impl StructuralPartialEq for FeatureSet
Auto Trait Implementations§
impl Freeze for FeatureSet
impl RefUnwindSafe for FeatureSet
impl Send for FeatureSet
impl Sync for FeatureSet
impl Unpin for FeatureSet
impl UnwindSafe for FeatureSet
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