pub struct CumulativeDataFlow {
pub total_bytes_read: u64,
pub total_bytes_written: u64,
pub total_invocations: u64,
pub max_delegation_depth: u32,
}Expand description
Cumulative data flow statistics for a session.
Fields§
§total_bytes_read: u64Total bytes read across all invocations in the session.
total_bytes_written: u64Total bytes written across all invocations in the session.
total_invocations: u64Total number of tool invocations recorded.
max_delegation_depth: u32Maximum delegation depth seen in the session.
Trait Implementations§
Source§impl Clone for CumulativeDataFlow
impl Clone for CumulativeDataFlow
Source§fn clone(&self) -> CumulativeDataFlow
fn clone(&self) -> CumulativeDataFlow
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 CumulativeDataFlow
impl Debug for CumulativeDataFlow
Source§impl Default for CumulativeDataFlow
impl Default for CumulativeDataFlow
Source§fn default() -> CumulativeDataFlow
fn default() -> CumulativeDataFlow
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CumulativeDataFlow
impl<'de> Deserialize<'de> for CumulativeDataFlow
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 CumulativeDataFlow
impl RefUnwindSafe for CumulativeDataFlow
impl Send for CumulativeDataFlow
impl Sync for CumulativeDataFlow
impl Unpin for CumulativeDataFlow
impl UnsafeUnpin for CumulativeDataFlow
impl UnwindSafe for CumulativeDataFlow
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