pub struct SessionInfo {
pub session_id: String,
pub repo: String,
pub repo_path: PathBuf,
pub agent_kind: AgentKind,
pub channel_id: String,
pub thread_ts: String,
pub created_at: DateTime<Utc>,
pub last_active: DateTime<Utc>,
pub status: SessionStatus,
pub total_turns: u32,
pub model: Option<String>,
}Fields§
§session_id: StringThe agent’s session ID (used for –resume).
repo: StringRepo name from config.
repo_path: PathBufAbsolute path to the repo.
agent_kind: AgentKindWhich agent backend.
channel_id: StringSlack channel ID.
thread_ts: StringThread timestamp (Slack’s thread_ts) — identifies the thread.
created_at: DateTime<Utc>§last_active: DateTime<Utc>§status: SessionStatus§total_turns: u32§model: Option<String>Model used for this session (for display; CLI remembers on –resume).
Trait Implementations§
Source§impl Clone for SessionInfo
impl Clone for SessionInfo
Source§fn clone(&self) -> SessionInfo
fn clone(&self) -> SessionInfo
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 SessionInfo
impl Debug for SessionInfo
Source§impl<'de> Deserialize<'de> for SessionInfo
impl<'de> Deserialize<'de> for SessionInfo
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 SessionInfo
impl RefUnwindSafe for SessionInfo
impl Send for SessionInfo
impl Sync for SessionInfo
impl Unpin for SessionInfo
impl UnsafeUnpin for SessionInfo
impl UnwindSafe for SessionInfo
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