pub struct AgentStatusInfo {
pub running: bool,
pub pid: Option<u32>,
pub socket_path: Option<String>,
}Expand description
Agent status information.
Fields§
§running: bool§pid: Option<u32>§socket_path: Option<String>Trait Implementations§
Source§impl Debug for AgentStatusInfo
impl Debug for AgentStatusInfo
Auto Trait Implementations§
impl Freeze for AgentStatusInfo
impl RefUnwindSafe for AgentStatusInfo
impl Send for AgentStatusInfo
impl Sync for AgentStatusInfo
impl Unpin for AgentStatusInfo
impl UnsafeUnpin for AgentStatusInfo
impl UnwindSafe for AgentStatusInfo
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