pub struct GotchaStats {
pub total_errors_detected: u64,
pub total_fixes_correlated: u64,
pub total_prevented: u64,
pub gotchas_promoted: u64,
pub gotchas_decayed: u64,
}Fields§
§total_errors_detected: u64§total_prevented: u64§gotchas_promoted: u64§gotchas_decayed: u64Trait Implementations§
Source§impl Clone for GotchaStats
impl Clone for GotchaStats
Source§fn clone(&self) -> GotchaStats
fn clone(&self) -> GotchaStats
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 GotchaStats
impl Debug for GotchaStats
Source§impl Default for GotchaStats
impl Default for GotchaStats
Source§fn default() -> GotchaStats
fn default() -> GotchaStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GotchaStats
impl<'de> Deserialize<'de> for GotchaStats
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
Auto Trait Implementations§
impl Freeze for GotchaStats
impl RefUnwindSafe for GotchaStats
impl Send for GotchaStats
impl Sync for GotchaStats
impl Unpin for GotchaStats
impl UnsafeUnpin for GotchaStats
impl UnwindSafe for GotchaStats
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