pub struct LegalRequirements {
pub after_first_deposit: Option<AfterFirstDepositRequirements>,
pub compliance: Option<ComplianceRequirements>,
pub partner: Option<Value>,
pub signup: Option<Value>,
pub withdrawal: Option<Value>,
}
Expand description
Legal requirements for the Landing Company
Fields§
§after_first_deposit: Option<AfterFirstDepositRequirements>
After first deposit requirements\n
compliance: Option<ComplianceRequirements>
Compliance requirements\n
partner: Option<Value>
Field ‘partner’ mapped to Value due to complexity/potential issues.\n
signup: Option<Value>
Field ‘signup’ mapped to Value due to complexity/potential issues.\n
withdrawal: Option<Value>
Field ‘withdrawal’ mapped to Value due to complexity/potential issues.\n
Trait Implementations§
Source§impl Clone for LegalRequirements
impl Clone for LegalRequirements
Source§fn clone(&self) -> LegalRequirements
fn clone(&self) -> LegalRequirements
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 LegalRequirements
impl Debug for LegalRequirements
Source§impl<'de> Deserialize<'de> for LegalRequirements
impl<'de> Deserialize<'de> for LegalRequirements
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 LegalRequirements
impl RefUnwindSafe for LegalRequirements
impl Send for LegalRequirements
impl Sync for LegalRequirements
impl Unpin for LegalRequirements
impl UnwindSafe for LegalRequirements
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