pub struct BusinessIdentification {
pub external_reference_id: String,
pub entity_type: EntityType,
pub participant_relationship_type: ParticipantRelationshipType,
pub business_name: String,
pub registration_number: String,
pub postal_address: PostalAddress,
}Fields§
§external_reference_id: String§entity_type: EntityType§participant_relationship_type: ParticipantRelationshipType§business_name: String§registration_number: String§postal_address: PostalAddressImplementations§
Source§impl BusinessIdentification
impl BusinessIdentification
pub fn new( external_reference_id: String, entity_type: EntityType, participant_relationship_type: ParticipantRelationshipType, business_name: String, registration_number: String, postal_address: PostalAddress, ) -> BusinessIdentification
Trait Implementations§
Source§impl Clone for BusinessIdentification
impl Clone for BusinessIdentification
Source§fn clone(&self) -> BusinessIdentification
fn clone(&self) -> BusinessIdentification
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 BusinessIdentification
impl Debug for BusinessIdentification
Source§impl Default for BusinessIdentification
impl Default for BusinessIdentification
Source§fn default() -> BusinessIdentification
fn default() -> BusinessIdentification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BusinessIdentification
impl<'de> Deserialize<'de> for BusinessIdentification
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 BusinessIdentification
impl PartialEq for BusinessIdentification
Source§impl Serialize for BusinessIdentification
impl Serialize for BusinessIdentification
impl StructuralPartialEq for BusinessIdentification
Auto Trait Implementations§
impl Freeze for BusinessIdentification
impl RefUnwindSafe for BusinessIdentification
impl Send for BusinessIdentification
impl Sync for BusinessIdentification
impl Unpin for BusinessIdentification
impl UnwindSafe for BusinessIdentification
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