pub struct RootAddress {
pub secondary_count: i64,
pub smarty_key: String,
pub primary_number: String,
pub street_name: String,
pub street_suffix: String,
pub street_postdirection: String,
pub city_name: String,
pub state_abbreviation: String,
pub zipcode: String,
pub plus4_code: String,
}
Fields§
§secondary_count: i64
§smarty_key: String
§primary_number: String
§street_name: String
§street_suffix: String
§street_postdirection: String
§city_name: String
§state_abbreviation: String
§zipcode: String
§plus4_code: String
Trait Implementations§
Source§impl Clone for RootAddress
impl Clone for RootAddress
Source§fn clone(&self) -> RootAddress
fn clone(&self) -> RootAddress
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 RootAddress
impl Debug for RootAddress
Source§impl Default for RootAddress
impl Default for RootAddress
Source§fn default() -> RootAddress
fn default() -> RootAddress
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RootAddresswhere
RootAddress: Default,
impl<'de> Deserialize<'de> for RootAddresswhere
RootAddress: Default,
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 RootAddress
impl PartialEq for RootAddress
Source§impl Serialize for RootAddress
impl Serialize for RootAddress
impl StructuralPartialEq for RootAddress
Auto Trait Implementations§
impl Freeze for RootAddress
impl RefUnwindSafe for RootAddress
impl Send for RootAddress
impl Sync for RootAddress
impl Unpin for RootAddress
impl UnwindSafe for RootAddress
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