pub struct CepSessionSnapshot {
pub timestamp: String,
pub score: u32,
pub cache_hit_rate: u32,
pub mode_diversity: u32,
pub compression_rate: u32,
pub tool_calls: u64,
pub tokens_saved: u64,
pub complexity: String,
}Fields§
§timestamp: String§score: u32§cache_hit_rate: u32§mode_diversity: u32§compression_rate: u32§tool_calls: u64§tokens_saved: u64§complexity: StringTrait Implementations§
Source§impl Clone for CepSessionSnapshot
impl Clone for CepSessionSnapshot
Source§fn clone(&self) -> CepSessionSnapshot
fn clone(&self) -> CepSessionSnapshot
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<'de> Deserialize<'de> for CepSessionSnapshot
impl<'de> Deserialize<'de> for CepSessionSnapshot
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 CepSessionSnapshot
impl RefUnwindSafe for CepSessionSnapshot
impl Send for CepSessionSnapshot
impl Sync for CepSessionSnapshot
impl Unpin for CepSessionSnapshot
impl UnsafeUnpin for CepSessionSnapshot
impl UnwindSafe for CepSessionSnapshot
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