pub struct ExecCommandEndEvent {
pub call_id: String,
pub stdout: String,
pub stderr: String,
pub exit_code: i32,
pub duration: Duration,
}
Fields§
§call_id: String
Identifier for the ExecCommandBegin that finished.
stdout: String
Captured stdout
stderr: String
Captured stderr
exit_code: i32
The command’s exit code.
duration: Duration
The duration of the command execution.
Trait Implementations§
Source§impl Clone for ExecCommandEndEvent
impl Clone for ExecCommandEndEvent
Source§fn clone(&self) -> ExecCommandEndEvent
fn clone(&self) -> ExecCommandEndEvent
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 ExecCommandEndEvent
impl Debug for ExecCommandEndEvent
Source§impl<'de> Deserialize<'de> for ExecCommandEndEvent
impl<'de> Deserialize<'de> for ExecCommandEndEvent
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 ExecCommandEndEvent
impl RefUnwindSafe for ExecCommandEndEvent
impl Send for ExecCommandEndEvent
impl Sync for ExecCommandEndEvent
impl Unpin for ExecCommandEndEvent
impl UnwindSafe for ExecCommandEndEvent
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