pub struct VerifyStats {
pub total: u64,
pub by_type: HashMap<String, u64>,
}Expand description
Statistics about unit verification errors, aggregated by unit type (service, slice, timer, etc.)
Fields§
§total: u64Total count of units with verification failures
by_type: HashMap<String, u64>Count of failing units per type (e.g., “service”, “slice”, “timer”) Only includes types that have at least one failure
Trait Implementations§
Source§impl Clone for VerifyStats
impl Clone for VerifyStats
Source§fn clone(&self) -> VerifyStats
fn clone(&self) -> VerifyStats
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 VerifyStats
impl Debug for VerifyStats
Source§impl Default for VerifyStats
impl Default for VerifyStats
Source§fn default() -> VerifyStats
fn default() -> VerifyStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VerifyStats
impl<'de> Deserialize<'de> for VerifyStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for VerifyStats
impl PartialEq for VerifyStats
Source§impl Serialize for VerifyStats
impl Serialize for VerifyStats
impl Eq for VerifyStats
impl StructuralPartialEq for VerifyStats
Auto Trait Implementations§
impl Freeze for VerifyStats
impl RefUnwindSafe for VerifyStats
impl Send for VerifyStats
impl Sync for VerifyStats
impl Unpin for VerifyStats
impl UnwindSafe for VerifyStats
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> NoneValue for Twhere
T: Default,
impl<T> NoneValue for Twhere
T: Default,
type NoneType = T
§fn null_value() -> T
fn null_value() -> T
The none-equivalent value.