pub enum CmdOutcome {
Success,
Failed,
Exit,
}Expand description
Result of running one command line: success (exit 0), failed (non-zero), or exit requested.
Variants§
Trait Implementations§
Source§impl Clone for CmdOutcome
impl Clone for CmdOutcome
Source§fn clone(&self) -> CmdOutcome
fn clone(&self) -> CmdOutcome
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CmdOutcome
impl Debug for CmdOutcome
Source§impl PartialEq for CmdOutcome
impl PartialEq for CmdOutcome
impl Copy for CmdOutcome
impl Eq for CmdOutcome
impl StructuralPartialEq for CmdOutcome
Auto Trait Implementations§
impl Freeze for CmdOutcome
impl RefUnwindSafe for CmdOutcome
impl Send for CmdOutcome
impl Sync for CmdOutcome
impl Unpin for CmdOutcome
impl UnsafeUnpin for CmdOutcome
impl UnwindSafe for CmdOutcome
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