[][src]Struct autofill::api::addresses::NewAddressFields

pub struct NewAddressFields {
    pub given_name: String,
    pub additional_name: String,
    pub family_name: String,
    pub organization: String,
    pub street_address: String,
    pub address_level3: String,
    pub address_level2: String,
    pub address_level1: String,
    pub postal_code: String,
    pub country: String,
    pub tel: String,
    pub email: String,
}

Fields

given_name: Stringadditional_name: Stringfamily_name: Stringorganization: Stringstreet_address: Stringaddress_level3: Stringaddress_level2: Stringaddress_level1: Stringpostal_code: Stringcountry: Stringtel: Stringemail: String

Trait Implementations

impl Clone for NewAddressFields[src]

impl Debug for NewAddressFields[src]

impl Default for NewAddressFields[src]

impl<'de> Deserialize<'de> for NewAddressFields[src]

impl Hash for NewAddressFields[src]

impl PartialEq<NewAddressFields> for NewAddressFields[src]

impl Serialize for NewAddressFields[src]

impl StructuralPartialEq for NewAddressFields[src]

Auto Trait Implementations

impl RefUnwindSafe for NewAddressFields

impl Send for NewAddressFields

impl Sync for NewAddressFields

impl Unpin for NewAddressFields

impl UnwindSafe for NewAddressFields

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CallHasher for T where
    T: Hash

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,