Trait parity_wasm::interpreter::UserError
[−]
[src]
pub trait UserError: 'static + Display + Debug { }
Custom user error.
Methods
impl UserError[src]
fn downcast_ref<T: UserError>(&self) -> Option<&T>[src]
Attempt to downcast this UserError to a concrete type by reference.
fn downcast_mut<T: UserError>(&mut self) -> Option<&mut T>[src]
Attempt to downcast this UserError to a concrete type by mutable
reference.