pub enum GhidraError {
GhidraNotFound,
FilterParseError(String),
InvalidFilter(String),
InvalidFormat(String),
InvalidDataType(String),
ConfigError(String),
IoError(Error),
JsonError(Error),
YamlError(Error),
}Variants§
GhidraNotFound
FilterParseError(String)
InvalidFilter(String)
InvalidFormat(String)
InvalidDataType(String)
ConfigError(String)
IoError(Error)
JsonError(Error)
YamlError(Error)
Trait Implementations§
Source§impl Debug for GhidraError
impl Debug for GhidraError
Source§impl Display for GhidraError
impl Display for GhidraError
Source§impl Error for GhidraError
impl Error for GhidraError
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 GhidraError
impl From<Error> for GhidraError
Source§impl From<Error> for GhidraError
impl From<Error> for GhidraError
Auto Trait Implementations§
impl Freeze for GhidraError
impl !RefUnwindSafe for GhidraError
impl Send for GhidraError
impl Sync for GhidraError
impl Unpin for GhidraError
impl UnsafeUnpin for GhidraError
impl !UnwindSafe for GhidraError
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