pub struct UpdateAccountIndividualAddressKana {
pub city: Option<String>,
pub country: Option<String>,
pub line1: Option<String>,
pub line2: Option<String>,
pub postal_code: Option<String>,
pub state: Option<String>,
pub town: Option<String>,
}
Expand description
The Kana variation of the individual’s primary address (Japan only).
Fields§
§city: Option<String>
City or ward.
country: Option<String>
Two-letter country code (ISO 3166-1 alpha-2).
line1: Option<String>
Block or building number.
line2: Option<String>
Building details.
postal_code: Option<String>
Postal code.
state: Option<String>
Prefecture.
town: Option<String>
Town or cho-me.
Implementations§
Trait Implementations§
Source§impl Clone for UpdateAccountIndividualAddressKana
impl Clone for UpdateAccountIndividualAddressKana
Source§fn clone(&self) -> UpdateAccountIndividualAddressKana
fn clone(&self) -> UpdateAccountIndividualAddressKana
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 moreAuto Trait Implementations§
impl Freeze for UpdateAccountIndividualAddressKana
impl RefUnwindSafe for UpdateAccountIndividualAddressKana
impl Send for UpdateAccountIndividualAddressKana
impl Sync for UpdateAccountIndividualAddressKana
impl Unpin for UpdateAccountIndividualAddressKana
impl UnwindSafe for UpdateAccountIndividualAddressKana
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