pub struct Session {
pub id: String,
pub name: String,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub status: SessionStatus,
pub context: SessionContext,
pub history: Vec<Message>,
pub background_agents: Vec<BackgroundAgent>,
}Expand description
Represents a session with its context, history, and metadata
Fields§
§id: StringUnique identifier for the session
name: StringHuman-readable name for the session
created_at: DateTime<Utc>When the session was created
updated_at: DateTime<Utc>When the session was last updated
status: SessionStatusCurrent status of the session
context: SessionContextSession context (project, provider, model, etc.)
history: Vec<Message>Conversation history
background_agents: Vec<BackgroundAgent>Background agents running in this session
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Session
impl<'de> Deserialize<'de> for Session
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 Session
impl RefUnwindSafe for Session
impl Send for Session
impl Sync for Session
impl Unpin for Session
impl UnwindSafe for Session
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