pub struct AgentSession {Show 13 fields
pub status: AgentStatus,
pub source: Source,
pub pid: Option<u32>,
pub parent_id: Option<String>,
pub background_only: bool,
pub cwd: Option<String>,
pub cmdline: Vec<String>,
pub created_ms: u64,
pub last_report_ms: u64,
pub exited: bool,
pub discovered: bool,
pub title: Option<String>,
pub transcript_path: Option<String>,
}Fields§
§status: AgentStatus§source: Source§pid: Option<u32>§parent_id: Option<String>§background_only: bool§cwd: Option<String>§cmdline: Vec<String>§created_ms: u64§last_report_ms: u64§exited: bool§discovered: bool§title: Option<String>§transcript_path: Option<String>Implementations§
Source§impl AgentSession
impl AgentSession
pub fn apply(&mut self, event: &AgentEvent)
Trait Implementations§
Source§impl Clone for AgentSession
impl Clone for AgentSession
Source§impl Debug for AgentSession
impl Debug for AgentSession
Source§impl Default for AgentSession
impl Default for AgentSession
Source§impl<'de> Deserialize<'de> for AgentSession
impl<'de> Deserialize<'de> for AgentSession
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
impl Eq for AgentSession
Source§impl PartialEq for AgentSession
impl PartialEq for AgentSession
Source§impl Serialize for AgentSession
impl Serialize for AgentSession
impl StructuralPartialEq for AgentSession
Auto Trait Implementations§
impl Freeze for AgentSession
impl RefUnwindSafe for AgentSession
impl Send for AgentSession
impl Sync for AgentSession
impl Unpin for AgentSession
impl UnsafeUnpin for AgentSession
impl UnwindSafe for AgentSession
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more