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