pub struct ExecutedCommand {
pub return_code: Option<i32>,
pub stdout: Vec<u8>,
pub stderr: Vec<u8>,
pub total_stdout: u64,
pub total_stderr: u64,
pub started_at: f64,
pub conclusion: ExecutionConclusion,
}Fields§
§return_code: Option<i32>§stdout: Vec<u8>§stderr: Vec<u8>§total_stdout: u64§total_stderr: u64§started_at: f64§conclusion: ExecutionConclusionTrait Implementations§
Source§impl Clone for ExecutedCommand
impl Clone for ExecutedCommand
Source§fn clone(&self) -> ExecutedCommand
fn clone(&self) -> ExecutedCommand
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 ExecutedCommand
impl Debug for ExecutedCommand
Source§impl PartialEq for ExecutedCommand
impl PartialEq for ExecutedCommand
impl StructuralPartialEq for ExecutedCommand
Auto Trait Implementations§
impl Freeze for ExecutedCommand
impl RefUnwindSafe for ExecutedCommand
impl Send for ExecutedCommand
impl Sync for ExecutedCommand
impl Unpin for ExecutedCommand
impl UnsafeUnpin for ExecutedCommand
impl UnwindSafe for ExecutedCommand
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