pub struct ConversationSummary {
pub id: ConversationId,
pub title: String,
pub role: RoleName,
pub message_count: usize,
pub context_count: usize,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub preview: Option<String>,
}Expand description
Summary of a conversation for listing purposes
Fields§
§id: ConversationIdUnique identifier for this conversation
title: StringHuman-readable title for the conversation
role: RoleNameRole used for this conversation
message_count: usizeNumber of messages in the conversation
context_count: usizeNumber of context items in the conversation
created_at: DateTime<Utc>When this conversation was created
updated_at: DateTime<Utc>When this conversation was last updated
preview: Option<String>Preview of the first user message (if any)
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 · 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<'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
Source§impl From<&Conversation> for ConversationSummary
impl From<&Conversation> for ConversationSummary
Source§fn from(conversation: &Conversation) -> Self
fn from(conversation: &Conversation) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConversationSummary
impl RefUnwindSafe for ConversationSummary
impl Send for ConversationSummary
impl Sync for ConversationSummary
impl Unpin 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