Struct aur_fetch::CommandFailed [−][src]
pub struct CommandFailed {
pub dir: PathBuf,
pub command: PathBuf,
pub args: Vec<String>,
pub stderr: Option<String>,
}
Expand description
Info for a command that exited non 0.
Fields
dir: PathBuf
The current working directory of the command ran.
command: PathBuf
The command that was ran.
args: Vec<String>
Args passed to the command that was ran.
stderr: Option<String>
The stderr from the command ran.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for CommandFailed
impl Send for CommandFailed
impl Sync for CommandFailed
impl Unpin for CommandFailed
impl UnwindSafe for CommandFailed
Blanket Implementations
Mutably borrows from an owned value. Read more