pub struct CommandRecord {
pub program: String,
pub args: Vec<String>,
pub cwd: Utf8PathBuf,
pub exit_code: Option<i32>,
pub status: RunStatus,
pub stdout: String,
pub stderr: String,
pub duration_ms: u128,
}Fields§
§program: String§args: Vec<String>§cwd: Utf8PathBuf§exit_code: Option<i32>§status: RunStatus§stdout: String§stderr: String§duration_ms: u128Trait Implementations§
Source§impl Clone for CommandRecord
impl Clone for CommandRecord
Source§fn clone(&self) -> CommandRecord
fn clone(&self) -> CommandRecord
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 CommandRecord
impl Debug for CommandRecord
Source§impl<'de> Deserialize<'de> for CommandRecord
impl<'de> Deserialize<'de> for CommandRecord
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
Source§impl PartialEq for CommandRecord
impl PartialEq for CommandRecord
Source§fn eq(&self, other: &CommandRecord) -> bool
fn eq(&self, other: &CommandRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CommandRecord
impl Serialize for CommandRecord
impl Eq for CommandRecord
impl StructuralPartialEq for CommandRecord
Auto Trait Implementations§
impl Freeze for CommandRecord
impl RefUnwindSafe for CommandRecord
impl Send for CommandRecord
impl Sync for CommandRecord
impl Unpin for CommandRecord
impl UnsafeUnpin for CommandRecord
impl UnwindSafe for CommandRecord
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