pub enum ExecutionExitCode {
Success,
GeneralError,
InvalidUsage,
CannotExecute,
NotFound,
Interrupted,
Unimplemented,
Custom(u8),
}Expand description
Represents an exit code from execution.
Variants§
Success
Indicates successful execution.
GeneralError
Indicates a general error.
InvalidUsage
Indicates invalid usage.
CannotExecute
Cannot execute the command.
NotFound
Indicates a command or similar item was not found.
Interrupted
Indicates execution was interrupted.
Unimplemented
Indicates unimplemented functionality was encountered.
Custom(u8)
A custom exit code.
Implementations§
Source§impl ExecutionExitCode
impl ExecutionExitCode
Sourcepub const fn is_success(&self) -> bool
pub const fn is_success(&self) -> bool
Returns whether the exit code indicates success.
Trait Implementations§
Source§impl Clone for ExecutionExitCode
impl Clone for ExecutionExitCode
Source§fn clone(&self) -> ExecutionExitCode
fn clone(&self) -> ExecutionExitCode
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 Default for ExecutionExitCode
impl Default for ExecutionExitCode
Source§fn default() -> ExecutionExitCode
fn default() -> ExecutionExitCode
Returns the “default value” for a type. Read more
Source§impl From<&Error> for ExecutionExitCode
impl From<&Error> for ExecutionExitCode
Source§impl From<&ErrorKind> for ExecutionExitCode
impl From<&ErrorKind> for ExecutionExitCode
Source§impl From<&ExecutionExitCode> for u8
impl From<&ExecutionExitCode> for u8
Source§fn from(code: &ExecutionExitCode) -> Self
fn from(code: &ExecutionExitCode) -> Self
Converts to this type from the input type.
Source§impl From<ExecutionExitCode> for ExecutionResult
impl From<ExecutionExitCode> for ExecutionResult
Source§fn from(exit_code: ExecutionExitCode) -> Self
fn from(exit_code: ExecutionExitCode) -> Self
Converts to this type from the input type.
Source§impl From<ExecutionExitCode> for u8
impl From<ExecutionExitCode> for u8
Source§fn from(code: ExecutionExitCode) -> Self
fn from(code: ExecutionExitCode) -> Self
Converts to this type from the input type.
Source§impl From<u8> for ExecutionExitCode
impl From<u8> for ExecutionExitCode
impl Copy for ExecutionExitCode
Auto Trait Implementations§
impl Freeze for ExecutionExitCode
impl RefUnwindSafe for ExecutionExitCode
impl Send for ExecutionExitCode
impl Sync for ExecutionExitCode
impl Unpin for ExecutionExitCode
impl UnwindSafe for ExecutionExitCode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more