pub enum ShellCodeError {
IO(Error),
Encoding(String),
}Expand description
Possible errors that can occur when generating shell code.
Variants§
Trait Implementations§
Source§impl Debug for ShellCodeError
impl Debug for ShellCodeError
Source§impl Display for ShellCodeError
impl Display for ShellCodeError
Source§impl Error for ShellCodeError
impl Error for ShellCodeError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Error> for ShellCodeError
impl From<Error> for ShellCodeError
Source§impl From<ShellCodeError> for CompletersError
impl From<ShellCodeError> for CompletersError
Source§fn from(err: ShellCodeError) -> Self
fn from(err: ShellCodeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ShellCodeError
impl !RefUnwindSafe for ShellCodeError
impl Send for ShellCodeError
impl Sync for ShellCodeError
impl Unpin for ShellCodeError
impl !UnwindSafe for ShellCodeError
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