pub enum WalletManagerError {
WalletError(WalletError),
}Expand description
An enumeration of possible errors that can occur during scaling operations.
Variants§
WalletError(WalletError)
Trait Implementations§
Source§impl Debug for WalletManagerError
impl Debug for WalletManagerError
Source§impl Display for WalletManagerError
impl Display for WalletManagerError
Source§impl Error for WalletManagerError
impl Error for WalletManagerError
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<WalletError> for WalletManagerError
impl From<WalletError> for WalletManagerError
Source§fn from(source: WalletError) -> Self
fn from(source: WalletError) -> Self
Converts to this type from the input type.
Source§impl From<WalletManagerError> for Error
impl From<WalletManagerError> for Error
Source§fn from(source: WalletManagerError) -> Self
fn from(source: WalletManagerError) -> Self
Converts to this type from the input type.
Source§impl From<WalletManagerError> for MonitorError
impl From<WalletManagerError> for MonitorError
Source§fn from(source: WalletManagerError) -> Self
fn from(source: WalletManagerError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WalletManagerError
impl !RefUnwindSafe for WalletManagerError
impl Send for WalletManagerError
impl Sync for WalletManagerError
impl Unpin for WalletManagerError
impl !UnwindSafe for WalletManagerError
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