pub struct BuyerIdentification {
pub email: Option<String>,
pub buyer_type: BuyerType,
pub buyer_entity_type: Option<BuyerEntityType>,
pub identification: Option<PersonalIdentification>,
pub first_name: Option<String>,
pub last_name: Option<String>,
}
Fields§
§email: Option<String>
Required.
buyer_type: BuyerType
§buyer_entity_type: Option<BuyerEntityType>
§identification: Option<PersonalIdentification>
§first_name: Option<String>
§last_name: Option<String>
Trait Implementations§
Source§impl Clone for BuyerIdentification
impl Clone for BuyerIdentification
Source§fn clone(&self) -> BuyerIdentification
fn clone(&self) -> BuyerIdentification
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 BuyerIdentification
impl Debug for BuyerIdentification
Source§impl<'de> Deserialize<'de> for BuyerIdentification
impl<'de> Deserialize<'de> for BuyerIdentification
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 BuyerIdentification
impl PartialEq for BuyerIdentification
Source§impl Serialize for BuyerIdentification
impl Serialize for BuyerIdentification
impl StructuralPartialEq for BuyerIdentification
Auto Trait Implementations§
impl Freeze for BuyerIdentification
impl RefUnwindSafe for BuyerIdentification
impl Send for BuyerIdentification
impl Sync for BuyerIdentification
impl Unpin for BuyerIdentification
impl UnwindSafe for BuyerIdentification
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