pub struct AgentSession {
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 last_report_ms: u64,
pub exited: bool,
pub discovered: bool,
pub title: Option<String>,
}Fields§
§status: AgentStatus§source: Source§pid: Option<u32>§parent_id: Option<String>§background_only: bool§cwd: Option<String>§cmdline: Vec<String>§last_report_ms: u64§exited: bool§discovered: bool§title: 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§fn clone(&self) -> AgentSession
fn clone(&self) -> AgentSession
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 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