Skip to main content

CommandRecord

Struct CommandRecord 

Source
pub struct CommandRecord<'a> {
    pub program: &'a str,
    pub args: &'a [String],
    pub working_dir: Option<&'a Path>,
    pub status: CommandStatus,
    pub duration: Duration,
}
Expand description

A display-safe, already-redacted record of one command a LoggingRunner ran, handed to a CommandObserver. Every field is safe to print: args has been through redact_args, and status carries no captured process output.

Display renders the canonical one-line summary the built-in StderrObserver uses (minus its tag), so a custom observer can reuse the exact formatting or read the structured fields directly.

Fields§

§program: &'a str

The program launched (its path/name as given — not a secret).

§args: &'a [String]

The arguments, already redacted by redact_args.

§working_dir: Option<&'a Path>

The working directory the command ran in, if one was bound.

§status: CommandStatus

How the run finished.

§duration: Duration

Wall-clock time the run took. Duration::ZERO for a CommandStatus::Started record (completion is observed elsewhere).

Trait Implementations§

Source§

impl<'a> Debug for CommandRecord<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for CommandRecord<'_>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for CommandRecord<'a>

§

impl<'a> RefUnwindSafe for CommandRecord<'a>

§

impl<'a> Send for CommandRecord<'a>

§

impl<'a> Sync for CommandRecord<'a>

§

impl<'a> Unpin for CommandRecord<'a>

§

impl<'a> UnsafeUnpin for CommandRecord<'a>

§

impl<'a> UnwindSafe for CommandRecord<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.