pub struct RuntimeEvidenceMetricCoverage {
pub ring: bool,
pub control: bool,
pub copy: bool,
pub residency: bool,
}Expand description
Coverage bits for the required runtime evidence metric families.
Fields§
§ring: boolRing occupancy metrics are present.
control: boolControl-buffer decode metrics are present.
copy: boolHost/device copy accounting metrics are present.
residency: boolResident device-byte metrics are present.
Implementations§
Source§impl RuntimeEvidenceMetricCoverage
impl RuntimeEvidenceMetricCoverage
Sourcepub fn missing_families(self) -> Vec<RuntimeEvidenceMetricFamily>
pub fn missing_families(self) -> Vec<RuntimeEvidenceMetricFamily>
Missing required metric families.
Trait Implementations§
Source§impl Clone for RuntimeEvidenceMetricCoverage
impl Clone for RuntimeEvidenceMetricCoverage
Source§fn clone(&self) -> RuntimeEvidenceMetricCoverage
fn clone(&self) -> RuntimeEvidenceMetricCoverage
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 RuntimeEvidenceMetricCoverage
Source§impl Default for RuntimeEvidenceMetricCoverage
impl Default for RuntimeEvidenceMetricCoverage
Source§fn default() -> RuntimeEvidenceMetricCoverage
fn default() -> RuntimeEvidenceMetricCoverage
Returns the “default value” for a type. Read more
impl Eq for RuntimeEvidenceMetricCoverage
Source§impl PartialEq for RuntimeEvidenceMetricCoverage
impl PartialEq for RuntimeEvidenceMetricCoverage
Source§fn eq(&self, other: &RuntimeEvidenceMetricCoverage) -> bool
fn eq(&self, other: &RuntimeEvidenceMetricCoverage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RuntimeEvidenceMetricCoverage
Auto Trait Implementations§
impl Freeze for RuntimeEvidenceMetricCoverage
impl RefUnwindSafe for RuntimeEvidenceMetricCoverage
impl Send for RuntimeEvidenceMetricCoverage
impl Sync for RuntimeEvidenceMetricCoverage
impl Unpin for RuntimeEvidenceMetricCoverage
impl UnsafeUnpin for RuntimeEvidenceMetricCoverage
impl UnwindSafe for RuntimeEvidenceMetricCoverage
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§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.