pub struct Address {
pub street1: Option<String>,
pub street2: Option<String>,
pub city: Option<String>,
pub state_or_country: Option<String>,
pub zip_code: Option<String>,
pub state_or_country_description: Option<String>,
pub country: Option<String>,
pub country_code: Option<String>,
pub foreign_state_territory: Option<String>,
pub is_foreign_location: Option<i32>,
}Expand description
A physical address associated with a company filing.
Fields§
§street1: Option<String>§street2: Option<String>§city: Option<String>§state_or_country: Option<String>§zip_code: Option<String>§state_or_country_description: Option<String>§country: Option<String>§country_code: Option<String>§foreign_state_territory: Option<String>§is_foreign_location: Option<i32>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Address
impl<'de> Deserialize<'de> for Address
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
Auto Trait Implementations§
impl Freeze for Address
impl RefUnwindSafe for Address
impl Send for Address
impl Sync for Address
impl Unpin for Address
impl UnsafeUnpin for Address
impl UnwindSafe for Address
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