pub struct ProcessExecution {
pub process_name: String,
pub agent_instance_id: String,
pub started_at: String,
pub exit_code: Option<i32>,
pub duration_ms: Option<u64>,
pub command: Option<String>,
}Expand description
A process execution by an agent.
Fields§
§process_name: String§agent_instance_id: String§started_at: String§exit_code: Option<i32>§duration_ms: Option<u64>§command: Option<String>Full command string (e.g. “npm test –runInBand”). Absent in legacy events.
Trait Implementations§
Source§impl Clone for ProcessExecution
impl Clone for ProcessExecution
Source§fn clone(&self) -> ProcessExecution
fn clone(&self) -> ProcessExecution
Returns a duplicate of the value. Read more
1.0.0 · 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 ProcessExecution
impl Debug for ProcessExecution
Source§impl<'de> Deserialize<'de> for ProcessExecution
impl<'de> Deserialize<'de> for ProcessExecution
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 ProcessExecution
impl RefUnwindSafe for ProcessExecution
impl Send for ProcessExecution
impl Sync for ProcessExecution
impl Unpin for ProcessExecution
impl UnsafeUnpin for ProcessExecution
impl UnwindSafe for ProcessExecution
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