pub struct Session {
pub id: i64,
pub task_id: i64,
pub agent: String,
pub pid: Option<i64>,
pub session_ref: Option<String>,
pub log_path: Option<String>,
pub started_at: String,
pub ended_at: Option<String>,
pub outcome: Option<SessionOutcome>,
}Fields§
§id: i64§task_id: i64§agent: String§pid: Option<i64>§session_ref: Option<String>The agent’s own reference for this session (a Claude session UUID, a
Codex session id, a tmux session name), captured after launch and
substituted into the agent’s attach/resume/continue verb templates.
None when the agent has no capture story or capture failed.
log_path: Option<String>§started_at: String§ended_at: Option<String>§outcome: Option<SessionOutcome>Trait Implementations§
impl Eq for Session
impl StructuralPartialEq for Session
Auto Trait Implementations§
impl Freeze for Session
impl RefUnwindSafe for Session
impl Send for Session
impl Sync for Session
impl Unpin for Session
impl UnsafeUnpin 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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.