pub struct CepStats {
pub sessions: u64,
pub total_cache_hits: u64,
pub total_cache_reads: u64,
pub total_tokens_original: u64,
pub total_tokens_compressed: u64,
pub modes: HashMap<String, u64>,
pub scores: Vec<CepSessionSnapshot>,
}Fields§
§sessions: u64§total_cache_hits: u64§total_cache_reads: u64§total_tokens_original: u64§total_tokens_compressed: u64§modes: HashMap<String, u64>§scores: Vec<CepSessionSnapshot>Trait Implementations§
Source§impl<'de> Deserialize<'de> for CepStats
impl<'de> Deserialize<'de> for CepStats
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 CepStats
impl RefUnwindSafe for CepStats
impl Send for CepStats
impl Sync for CepStats
impl Unpin for CepStats
impl UnsafeUnpin for CepStats
impl UnwindSafe for CepStats
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