pub enum RuntimeOpsError {
EnvOpsError(EnvOpsError),
MemoryRegistryOpsError(MemoryRegistryOpsError),
WasmOpsError(WasmOpsError),
}Expand description
RuntimeOpsError
Variants§
Trait Implementations§
Source§impl Debug for RuntimeOpsError
impl Debug for RuntimeOpsError
Source§impl Display for RuntimeOpsError
impl Display for RuntimeOpsError
Source§impl Error for RuntimeOpsError
impl Error for RuntimeOpsError
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<EnvOpsError> for RuntimeOpsError
impl From<EnvOpsError> for RuntimeOpsError
Source§fn from(source: EnvOpsError) -> Self
fn from(source: EnvOpsError) -> Self
Converts to this type from the input type.
Source§impl From<MemoryRegistryOpsError> for RuntimeOpsError
impl From<MemoryRegistryOpsError> for RuntimeOpsError
Source§fn from(source: MemoryRegistryOpsError) -> Self
fn from(source: MemoryRegistryOpsError) -> Self
Converts to this type from the input type.
Source§impl From<RuntimeOpsError> for Error
impl From<RuntimeOpsError> for Error
Source§fn from(err: RuntimeOpsError) -> Self
fn from(err: RuntimeOpsError) -> Self
Converts to this type from the input type.
Source§impl From<RuntimeOpsError> for OpsError
impl From<RuntimeOpsError> for OpsError
Source§fn from(source: RuntimeOpsError) -> Self
fn from(source: RuntimeOpsError) -> Self
Converts to this type from the input type.
Source§impl From<WasmOpsError> for RuntimeOpsError
impl From<WasmOpsError> for RuntimeOpsError
Source§fn from(source: WasmOpsError) -> Self
fn from(source: WasmOpsError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RuntimeOpsError
impl RefUnwindSafe for RuntimeOpsError
impl Send for RuntimeOpsError
impl Sync for RuntimeOpsError
impl Unpin for RuntimeOpsError
impl UnwindSafe for RuntimeOpsError
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