pub struct LegalEntityJapanAddress {
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>,
}
Fields§
§city: Option<String>
City/Ward.
country: Option<String>
Two-letter country code (ISO 3166-1 alpha-2).
line1: Option<String>
Block/Building number.
line2: Option<String>
Building details.
postal_code: Option<String>
ZIP or postal code.
state: Option<String>
Prefecture.
town: Option<String>
Town/cho-me.
Trait Implementations§
Source§impl Clone for LegalEntityJapanAddress
impl Clone for LegalEntityJapanAddress
Source§fn clone(&self) -> LegalEntityJapanAddress
fn clone(&self) -> LegalEntityJapanAddress
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 LegalEntityJapanAddress
impl Debug for LegalEntityJapanAddress
Auto Trait Implementations§
impl Freeze for LegalEntityJapanAddress
impl RefUnwindSafe for LegalEntityJapanAddress
impl Send for LegalEntityJapanAddress
impl Sync for LegalEntityJapanAddress
impl Unpin for LegalEntityJapanAddress
impl UnwindSafe for LegalEntityJapanAddress
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