pub struct AccountRequirementsError {
pub code: AccountRequirementsErrorCode,
pub reason: String,
pub requirement: String,
}
Fields§
§code: AccountRequirementsErrorCode
The code for the type of error.
reason: String
An informative message that indicates the error type and provides additional details about the error.
requirement: String
The 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 · 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>
Auto Trait Implementations§
impl Freeze for AccountRequirementsError
impl RefUnwindSafe for AccountRequirementsError
impl Send for AccountRequirementsError
impl Sync for AccountRequirementsError
impl Unpin 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