pub struct GuardStats {
pub total_checks: u64,
pub violations_detected: u64,
pub high_confidence: u64,
pub cache_hits: u64,
}Expand description
Statistics for the semantic guard
Fields§
§total_checks: u64Total checks performed
violations_detected: u64Violations detected
high_confidence: u64High confidence violations
cache_hits: u64Cache hits
Trait Implementations§
Source§impl Debug for GuardStats
impl Debug for GuardStats
Source§impl Default for GuardStats
impl Default for GuardStats
Source§fn default() -> GuardStats
fn default() -> GuardStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GuardStats
impl RefUnwindSafe for GuardStats
impl Send for GuardStats
impl Sync for GuardStats
impl Unpin for GuardStats
impl UnwindSafe for GuardStats
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