pub struct AccountRequirementsError {
pub code: AccountRequirementsErrorCode,
pub reason: String,
pub requirement: String,
}Fields§
§code: AccountRequirementsErrorCodeThe code for the type of error.
reason: StringAn informative message that indicates the error type and provides additional details about the error.
requirement: StringThe specific user onboarding requirement field (in the requirements hash) that needs to be resolved.
Trait Implementations§
Source§impl Clone for AccountRequirementsError
impl Clone for AccountRequirementsError
Source§fn clone(&self) -> AccountRequirementsError
fn clone(&self) -> AccountRequirementsError
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 AccountRequirementsError
impl Debug for AccountRequirementsError
Source§impl FromValueOpt for AccountRequirementsError
impl FromValueOpt for AccountRequirementsError
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for AccountRequirementsError
impl PartialEq for AccountRequirementsError
Source§fn eq(&self, other: &AccountRequirementsError) -> bool
fn eq(&self, other: &AccountRequirementsError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AccountRequirementsError
impl StructuralPartialEq for AccountRequirementsError
Auto Trait Implementations§
impl Freeze for AccountRequirementsError
impl RefUnwindSafe for AccountRequirementsError
impl Send for AccountRequirementsError
impl Sync for AccountRequirementsError
impl Unpin for AccountRequirementsError
impl UnsafeUnpin for AccountRequirementsError
impl UnwindSafe for AccountRequirementsError
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