pub enum RemoveModuleError {
ModuleNotOwned,
IncorrectModuleOwner,
LLVMError(LLVMString),
}Variants
ModuleNotOwned
IncorrectModuleOwner
LLVMError(LLVMString)
Trait Implementations
sourceimpl Debug for RemoveModuleError
impl Debug for RemoveModuleError
sourceimpl Display for RemoveModuleError
impl Display for RemoveModuleError
sourceimpl Error for RemoveModuleError
impl Error for RemoveModuleError
sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
sourcefn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0:
replaced by Error::source, which can support downcasting
sourceimpl PartialEq<RemoveModuleError> for RemoveModuleError
impl PartialEq<RemoveModuleError> for RemoveModuleError
sourcefn eq(&self, other: &RemoveModuleError) -> bool
fn eq(&self, other: &RemoveModuleError) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
impl Eq for RemoveModuleError
impl StructuralEq for RemoveModuleError
impl StructuralPartialEq for RemoveModuleError
Auto Trait Implementations
impl RefUnwindSafe for RemoveModuleError
impl !Send for RemoveModuleError
impl !Sync for RemoveModuleError
impl Unpin for RemoveModuleError
impl UnwindSafe for RemoveModuleError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more