pub struct UpdateBillingAddressRequestData {
pub _type: Option<TypeBillingAddress>,
pub id: Option<String>,
pub attributes: Option<Box<BillingAddressAttributes>>,
}
Fields§
§_type: Option<TypeBillingAddress>
§id: Option<String>
Alphanumeric string identifying the billing address.
attributes: Option<Box<BillingAddressAttributes>>
Implementations§
Trait Implementations§
Source§impl Clone for UpdateBillingAddressRequestData
impl Clone for UpdateBillingAddressRequestData
Source§fn clone(&self) -> UpdateBillingAddressRequestData
fn clone(&self) -> UpdateBillingAddressRequestData
Returns a copy 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 Default for UpdateBillingAddressRequestData
impl Default for UpdateBillingAddressRequestData
Source§fn default() -> UpdateBillingAddressRequestData
fn default() -> UpdateBillingAddressRequestData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateBillingAddressRequestData
impl<'de> Deserialize<'de> for UpdateBillingAddressRequestData
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 UpdateBillingAddressRequestData
impl PartialEq for UpdateBillingAddressRequestData
Source§fn eq(&self, other: &UpdateBillingAddressRequestData) -> bool
fn eq(&self, other: &UpdateBillingAddressRequestData) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateBillingAddressRequestData
Auto Trait Implementations§
impl Freeze for UpdateBillingAddressRequestData
impl RefUnwindSafe for UpdateBillingAddressRequestData
impl Send for UpdateBillingAddressRequestData
impl Sync for UpdateBillingAddressRequestData
impl Unpin for UpdateBillingAddressRequestData
impl UnwindSafe for UpdateBillingAddressRequestData
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