pub struct InvalidationByReason {
pub reason: String,
pub count: u64,
}Expand description
Count of invalidations grouped by structured reason.
Fields§
§reason: StringThe canonical reason string (matches InvalidationReason::as_str()).
count: u64Trait Implementations§
Source§impl Clone for InvalidationByReason
impl Clone for InvalidationByReason
Source§fn clone(&self) -> InvalidationByReason
fn clone(&self) -> InvalidationByReason
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 moreSource§impl Debug for InvalidationByReason
impl Debug for InvalidationByReason
Auto Trait Implementations§
impl Freeze for InvalidationByReason
impl RefUnwindSafe for InvalidationByReason
impl Send for InvalidationByReason
impl Sync for InvalidationByReason
impl Unpin for InvalidationByReason
impl UnsafeUnpin for InvalidationByReason
impl UnwindSafe for InvalidationByReason
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