pub struct DeliveryStats {
pub total_entries: usize,
pub stubs_served: u64,
pub tokens_saved: u64,
pub unique_paths: usize,
pub unique_agents: usize,
}Expand description
Statistics for the delivery registry.
Fields§
§total_entries: usize[INTERNAL] Registry entry count.
stubs_served: u64[INTERNAL] Stub-delivery count.
tokens_saved: u64[INTERNAL] Token-savings metric.
unique_paths: usize[INTERNAL] Unique-path count.
unique_agents: usize[INTERNAL] Unique-agent count.
Trait Implementations§
Source§impl Clone for DeliveryStats
impl Clone for DeliveryStats
Source§fn clone(&self) -> DeliveryStats
fn clone(&self) -> DeliveryStats
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 DeliveryStats
impl Debug for DeliveryStats
Source§impl Default for DeliveryStats
impl Default for DeliveryStats
Source§fn default() -> DeliveryStats
fn default() -> DeliveryStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeliveryStats
impl<'de> Deserialize<'de> for DeliveryStats
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 DeliveryStats
impl RefUnwindSafe for DeliveryStats
impl Send for DeliveryStats
impl Sync for DeliveryStats
impl Unpin for DeliveryStats
impl UnsafeUnpin for DeliveryStats
impl UnwindSafe for DeliveryStats
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