pub struct SessionDistillation {
pub id: String,
pub session_id: String,
pub distilled_at: DateTime<Utc>,
pub input_token_count: i64,
pub output_memory_count: usize,
pub key_facts_extracted: usize,
pub importance_threshold: f64,
}Fields§
§id: String§session_id: String§distilled_at: DateTime<Utc>§input_token_count: i64§output_memory_count: usize§key_facts_extracted: usize§importance_threshold: f64Trait Implementations§
Source§impl Clone for SessionDistillation
impl Clone for SessionDistillation
Source§fn clone(&self) -> SessionDistillation
fn clone(&self) -> SessionDistillation
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 SessionDistillation
impl Debug for SessionDistillation
Source§impl<'de> Deserialize<'de> for SessionDistillation
impl<'de> Deserialize<'de> for SessionDistillation
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 SessionDistillation
impl RefUnwindSafe for SessionDistillation
impl Send for SessionDistillation
impl Sync for SessionDistillation
impl Unpin for SessionDistillation
impl UnsafeUnpin for SessionDistillation
impl UnwindSafe for SessionDistillation
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