pub struct ChildError {
pub program: String,
pub code: Option<i32>,
}
Expand description
Child process error
Fields§
§program: String
Name of the child program, see std::process::Command.get_program()
code: Option<i32>
Exit code of the child process see std::process::ExitStatus.code()
Trait Implementations§
Source§impl Debug for ChildError
impl Debug for ChildError
Auto Trait Implementations§
impl Freeze for ChildError
impl RefUnwindSafe for ChildError
impl Send for ChildError
impl Sync for ChildError
impl Unpin for ChildError
impl UnwindSafe for ChildError
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