pub enum ExecutableError {
ExeNotFound(String),
FileNotFound(String),
Other(String),
Exhausted,
Unimplemented,
}Variants§
Trait Implementations§
Source§impl Clone for ExecutableError
impl Clone for ExecutableError
Source§fn clone(&self) -> ExecutableError
fn clone(&self) -> ExecutableError
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 ExecutableError
impl Debug for ExecutableError
Source§impl Display for ExecutableError
impl Display for ExecutableError
Source§impl Fail for ExecutableError
impl Fail for ExecutableError
Source§fn cause(&self) -> Option<&dyn Fail>
fn cause(&self) -> Option<&dyn Fail>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
Source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace carried by this failure, if it
carries one. Read moreAuto Trait Implementations§
impl Freeze for ExecutableError
impl RefUnwindSafe for ExecutableError
impl Send for ExecutableError
impl Sync for ExecutableError
impl Unpin for ExecutableError
impl UnwindSafe for ExecutableError
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