pub struct AgentIpcEntry {
pub id: String,
pub command: String,
pub started_at: String,
pub ended_at: Option<String>,
pub duration_ms: Option<f64>,
pub ok: Option<bool>,
pub error: Option<String>,
pub window: Option<String>,
}Fields§
§id: String§command: String§started_at: String§ended_at: Option<String>§duration_ms: Option<f64>§ok: Option<bool>§error: Option<String>§window: Option<String>Trait Implementations§
Source§impl Clone for AgentIpcEntry
impl Clone for AgentIpcEntry
Source§fn clone(&self) -> AgentIpcEntry
fn clone(&self) -> AgentIpcEntry
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 AgentIpcEntry
impl Debug for AgentIpcEntry
Source§impl<'de> Deserialize<'de> for AgentIpcEntry
impl<'de> Deserialize<'de> for AgentIpcEntry
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 AgentIpcEntry
impl RefUnwindSafe for AgentIpcEntry
impl Send for AgentIpcEntry
impl Sync for AgentIpcEntry
impl Unpin for AgentIpcEntry
impl UnsafeUnpin for AgentIpcEntry
impl UnwindSafe for AgentIpcEntry
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