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