pub struct ThreadInfo {
pub thread_id: String,
pub agent_id: Option<String>,
pub title: Option<String>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub message_count: Option<u32>,
}Expand description
Thread information for conversation management
Fields§
§thread_id: StringThread ID
agent_id: Option<String>Agent ID associated with the thread
title: Option<String>Thread title or summary
created_at: Option<String>Created timestamp
updated_at: Option<String>Updated timestamp
message_count: Option<u32>Message count
Trait Implementations§
Source§impl Clone for ThreadInfo
impl Clone for ThreadInfo
Source§fn clone(&self) -> ThreadInfo
fn clone(&self) -> ThreadInfo
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 ThreadInfo
impl Debug for ThreadInfo
Source§impl<'de> Deserialize<'de> for ThreadInfo
impl<'de> Deserialize<'de> for ThreadInfo
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 ThreadInfo
impl RefUnwindSafe for ThreadInfo
impl Send for ThreadInfo
impl Sync for ThreadInfo
impl Unpin for ThreadInfo
impl UnwindSafe for ThreadInfo
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