pub enum ConfigureAccountError {
Status400(AccountConfigurationBadRequestResponse),
Status401(Error401),
Status403(AccountConfigurationForbiddenResponse),
Status404(Error404),
Status405(Error405),
UnknownValue(Value),
}Expand description
struct for typed errors of method configure_account
Variants§
Status400(AccountConfigurationBadRequestResponse)
Status401(Error401)
Status403(AccountConfigurationForbiddenResponse)
Status404(Error404)
Status405(Error405)
UnknownValue(Value)
Trait Implementations§
Source§impl Clone for ConfigureAccountError
impl Clone for ConfigureAccountError
Source§fn clone(&self) -> ConfigureAccountError
fn clone(&self) -> ConfigureAccountError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ConfigureAccountError
impl Debug for ConfigureAccountError
Source§impl<'de> Deserialize<'de> for ConfigureAccountError
impl<'de> Deserialize<'de> for ConfigureAccountError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ConfigureAccountError
impl RefUnwindSafe for ConfigureAccountError
impl Send for ConfigureAccountError
impl Sync for ConfigureAccountError
impl Unpin for ConfigureAccountError
impl UnsafeUnpin for ConfigureAccountError
impl UnwindSafe for ConfigureAccountError
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