pub enum SpendPanelError {
ProviderNotFound(String),
AuthFailed(String, String),
NetworkError(String),
RateLimited(String, Option<u64>),
ParseError(String, String),
ConfigError(String),
ProviderError(String, String),
Timeout(String),
}Variants§
ProviderNotFound(String)
AuthFailed(String, String)
NetworkError(String)
RateLimited(String, Option<u64>)
ParseError(String, String)
ConfigError(String)
ProviderError(String, String)
Timeout(String)
Trait Implementations§
Source§impl Clone for SpendPanelError
impl Clone for SpendPanelError
Source§impl Debug for SpendPanelError
impl Debug for SpendPanelError
Source§impl Display for SpendPanelError
impl Display for SpendPanelError
Source§impl Error for SpendPanelError
impl Error for SpendPanelError
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 PartialEq for SpendPanelError
impl PartialEq for SpendPanelError
impl StructuralPartialEq for SpendPanelError
Auto Trait Implementations§
impl Freeze for SpendPanelError
impl RefUnwindSafe for SpendPanelError
impl Send for SpendPanelError
impl Sync for SpendPanelError
impl Unpin for SpendPanelError
impl UnsafeUnpin for SpendPanelError
impl UnwindSafe for SpendPanelError
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