pub struct ContextMetadata {
pub created_at: DateTime<Utc>,
pub last_activity: DateTime<Utc>,
pub message_count: usize,
pub total_tokens: usize,
pub total_cost: f64,
pub tags: Vec<String>,
}Expand description
Context metadata
Fields§
§created_at: DateTime<Utc>When the context was created
last_activity: DateTime<Utc>Last activity timestamp
message_count: usizeTotal message count
total_tokens: usizeTotal tokens used
total_cost: f64Total cost incurred
Custom tags
Trait Implementations§
Source§impl Clone for ContextMetadata
impl Clone for ContextMetadata
Source§fn clone(&self) -> ContextMetadata
fn clone(&self) -> ContextMetadata
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 ContextMetadata
impl Debug for ContextMetadata
Source§impl<'de> Deserialize<'de> for ContextMetadata
impl<'de> Deserialize<'de> for ContextMetadata
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 ContextMetadata
impl RefUnwindSafe for ContextMetadata
impl Send for ContextMetadata
impl Sync for ContextMetadata
impl Unpin for ContextMetadata
impl UnwindSafe for ContextMetadata
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