Struct astrolab_smart_coffee_types::digishop::auth::export_customers::CustomerRecord[][src]

pub struct CustomerRecord {
    pub first_name: Option<String>,
    pub last_name: Option<String>,
    pub email: Option<String>,
    pub phone: Option<String>,
    pub country: Option<String>,
    pub city: Option<String>,
    pub address: Option<String>,
    pub building: Option<String>,
    pub floor: Option<String>,
    pub postal_code: Option<i32>,
}

Fields

first_name: Option<String>last_name: Option<String>email: Option<String>phone: Option<String>country: Option<String>city: Option<String>address: Option<String>building: Option<String>floor: Option<String>postal_code: Option<i32>

Trait Implementations

impl Debug for CustomerRecord[src]

impl Serialize for CustomerRecord[src]

Auto Trait Implementations

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

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>,