pub enum EventSupport {
Supported,
Unsupported,
ImplementationDefined,
}Available on AArch64 and crate feature
pmu only.Expand description
Architectural evidence for an event encoding.
Variants§
Supported
The architecture reports the event as implemented.
Unsupported
The architecture reports the event as absent.
ImplementationDefined
The encoding is outside the architectural identification bitmaps.
Trait Implementations§
Source§impl Clone for EventSupport
impl Clone for EventSupport
Source§fn clone(&self) -> EventSupport
fn clone(&self) -> EventSupport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EventSupport
Source§impl Debug for EventSupport
impl Debug for EventSupport
impl Eq for EventSupport
Source§impl PartialEq for EventSupport
impl PartialEq for EventSupport
impl StructuralPartialEq for EventSupport
Auto Trait Implementations§
impl Freeze for EventSupport
impl RefUnwindSafe for EventSupport
impl Send for EventSupport
impl Sync for EventSupport
impl Unpin for EventSupport
impl UnsafeUnpin for EventSupport
impl UnwindSafe for EventSupport
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