pub struct Status(pub ExitStatus);
Expand description

Use Status as the return type for run_output! to retrieve the ExitStatus of the child process:

use cradle::prelude::*;

let Status(exit_status) = run_output!(%"echo foo");
assert!(exit_status.success());

Also, when using Status, non-zero exit codes won’t result in neither a panic (when used with run! or run_output!) nor an std::result::Result::Err (when used with run_result!):

use cradle::prelude::*;

let Status(exit_status) = run_output!("false");
assert_eq!(exit_status.code(), Some(1));
let result: Result<Status, cradle::Error> = run_result!("false");
assert!(result.is_ok());
assert_eq!(result.unwrap().0.code(), Some(1));

Also see the section about error handling in the module documentation.

Tuple Fields

0: ExitStatus

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Configures the given Config for the Output type. This is an internal function that should be ignored. Read more

Converts ChildOutputs from running a child process into values of the Output type. This is an internal function that should be ignored. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.