pub struct BuyerInformation {
pub first_name: Option<String>,
pub last_name: Option<String>,
pub phone: Option<Phone>,
pub address: Option<Address>,
pub registration_date: Option<String>,
}Fields§
§first_name: Option<String>§last_name: Option<String>§phone: Option<Phone>§address: Option<Address>§registration_date: Option<String>Trait Implementations§
Source§impl Clone for BuyerInformation
impl Clone for BuyerInformation
Source§fn clone(&self) -> BuyerInformation
fn clone(&self) -> BuyerInformation
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 BuyerInformation
impl Debug for BuyerInformation
Source§impl Default for BuyerInformation
impl Default for BuyerInformation
Source§fn default() -> BuyerInformation
fn default() -> BuyerInformation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BuyerInformation
impl<'de> Deserialize<'de> for BuyerInformation
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 BuyerInformation
impl PartialEq for BuyerInformation
Source§impl Serialize for BuyerInformation
impl Serialize for BuyerInformation
impl StructuralPartialEq for BuyerInformation
Auto Trait Implementations§
impl Freeze for BuyerInformation
impl RefUnwindSafe for BuyerInformation
impl Send for BuyerInformation
impl Sync for BuyerInformation
impl Unpin for BuyerInformation
impl UnwindSafe for BuyerInformation
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