pub enum AccountManagementError {
UrlEncoded(Error),
}Expand description
All errors that can occur when building the account management URL.
Variants§
Trait Implementations§
Source§impl Debug for AccountManagementError
impl Debug for AccountManagementError
Source§impl Display for AccountManagementError
impl Display for AccountManagementError
Source§impl Error for AccountManagementError
impl Error for AccountManagementError
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<AccountManagementError> for Error
impl From<AccountManagementError> for Error
Source§fn from(source: AccountManagementError) -> Self
fn from(source: AccountManagementError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AccountManagementError
impl RefUnwindSafe for AccountManagementError
impl Send for AccountManagementError
impl Sync for AccountManagementError
impl Unpin for AccountManagementError
impl UnsafeUnpin for AccountManagementError
impl UnwindSafe for AccountManagementError
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