pub struct ConversationSummary {
pub total_conversations: i64,
pub total_ai_requests: i64,
pub by_model: Vec<ConversationGroup>,
pub by_agent: Vec<ConversationGroup>,
pub recent: Vec<RecentConversationSummary>,
}Fields§
§total_conversations: i64§total_ai_requests: i64§by_model: Vec<ConversationGroup>§by_agent: Vec<ConversationGroup>§recent: Vec<RecentConversationSummary>Trait Implementations§
Source§impl Clone for ConversationSummary
impl Clone for ConversationSummary
Source§fn clone(&self) -> ConversationSummary
fn clone(&self) -> ConversationSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConversationSummary
impl Debug for ConversationSummary
Source§impl Default for ConversationSummary
impl Default for ConversationSummary
Source§fn default() -> ConversationSummary
fn default() -> ConversationSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConversationSummary
impl<'de> Deserialize<'de> for ConversationSummary
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 ConversationSummary
impl RefUnwindSafe for ConversationSummary
impl Send for ConversationSummary
impl Sync for ConversationSummary
impl Unpin for ConversationSummary
impl UnsafeUnpin for ConversationSummary
impl UnwindSafe for ConversationSummary
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