pub struct ProcessResult {
pub code: ExitCode,
pub output: Option<ProcessOutput>,
}Fields§
§code: ExitCode§output: Option<ProcessOutput>Implementations§
Source§impl ProcessResult
impl ProcessResult
pub fn fail_on_start() -> Self
pub fn ok(&self) -> bool
Auto Trait Implementations§
impl Freeze for ProcessResult
impl RefUnwindSafe for ProcessResult
impl Send for ProcessResult
impl Sync for ProcessResult
impl Unpin for ProcessResult
impl UnwindSafe for ProcessResult
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