pub struct McpMetricsCollector { /* private fields */ }Expand description
Thread-safe categorical metrics collector.
Implementations§
Source§impl McpMetricsCollector
impl McpMetricsCollector
pub fn record_decision(&self, label: McpDecisionLabel) -> Result<(), McpError>
pub fn record_threat(&self, label: McpThreatLabel) -> Result<(), McpError>
pub fn record_rate_limit_hit(&self, label: &str) -> Result<(), McpError>
pub fn record_scan(&self, label: McpScanLabel) -> Result<(), McpError>
pub fn snapshot(&self) -> Result<McpMetricsSnapshot, McpError>
Trait Implementations§
Source§impl Clone for McpMetricsCollector
impl Clone for McpMetricsCollector
Source§fn clone(&self) -> McpMetricsCollector
fn clone(&self) -> McpMetricsCollector
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 McpMetricsCollector
impl Debug for McpMetricsCollector
Source§impl Default for McpMetricsCollector
impl Default for McpMetricsCollector
Source§fn default() -> McpMetricsCollector
fn default() -> McpMetricsCollector
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for McpMetricsCollector
impl RefUnwindSafe for McpMetricsCollector
impl Send for McpMetricsCollector
impl Sync for McpMetricsCollector
impl Unpin for McpMetricsCollector
impl UnsafeUnpin for McpMetricsCollector
impl UnwindSafe for McpMetricsCollector
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more