pub struct AddressBeneficiaryItemSchema {Show 15 fields
pub address: String,
pub agreed: bool,
pub beneficiary_address: String,
pub beneficiary_company_name: Option<String>,
pub beneficiary_first_name: Option<String>,
pub beneficiary_last_name: Option<String>,
pub beneficiary_vasp_did: String,
pub beneficiary_vasp_name: String,
pub beneficiary_vasp_website: Option<String>,
pub creation_timestamp: i64,
pub currency: Currency,
pub personal: bool,
pub tag: Option<String>,
pub unhosted: bool,
pub update_timestamp: i64,
}Fields§
§address: String§agreed: bool§beneficiary_address: String§beneficiary_company_name: Option<String>§beneficiary_first_name: Option<String>§beneficiary_last_name: Option<String>§beneficiary_vasp_did: String§beneficiary_vasp_name: String§beneficiary_vasp_website: Option<String>§creation_timestamp: i64§currency: Currency§personal: bool§tag: Option<String>§unhosted: bool§update_timestamp: i64Trait Implementations§
Source§impl Clone for AddressBeneficiaryItemSchema
impl Clone for AddressBeneficiaryItemSchema
Source§fn clone(&self) -> AddressBeneficiaryItemSchema
fn clone(&self) -> AddressBeneficiaryItemSchema
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 AddressBeneficiaryItemSchema
impl Debug for AddressBeneficiaryItemSchema
Source§impl Default for AddressBeneficiaryItemSchema
impl Default for AddressBeneficiaryItemSchema
Source§fn default() -> AddressBeneficiaryItemSchema
fn default() -> AddressBeneficiaryItemSchema
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddressBeneficiaryItemSchema
impl<'de> Deserialize<'de> for AddressBeneficiaryItemSchema
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
Source§impl PartialEq for AddressBeneficiaryItemSchema
impl PartialEq for AddressBeneficiaryItemSchema
Source§fn eq(&self, other: &AddressBeneficiaryItemSchema) -> bool
fn eq(&self, other: &AddressBeneficiaryItemSchema) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AddressBeneficiaryItemSchema
Auto Trait Implementations§
impl Freeze for AddressBeneficiaryItemSchema
impl RefUnwindSafe for AddressBeneficiaryItemSchema
impl Send for AddressBeneficiaryItemSchema
impl Sync for AddressBeneficiaryItemSchema
impl Unpin for AddressBeneficiaryItemSchema
impl UnwindSafe for AddressBeneficiaryItemSchema
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