Struct plaid::transactions::Location[][src]

pub struct Location {
    pub address: Option<String>,
    pub city: Option<String>,
    pub region: Option<String>,
    pub postal_code: Option<String>,
    pub country: Option<String>,
    pub lat: Option<f64>,
    pub lon: Option<f64>,
    pub store_number: Option<String>,
}

Fields

address: Option<String>

The street address where the transaction occurred.

city: Option<String>

The city where the transaction occurred.

region: Option<String>

The region or state where the transaction occurred.

postal_code: Option<String>

The postal code where the transaction occurred.

country: Option<String>

The ISO 3166-1 alpha-2 country code where the transaction occurred.

lat: Option<f64>

The latitude where the transaction occurred.

lon: Option<f64>

The longitude where the transaction occurred.

store_number: Option<String>

The merchant defined store number where the transaction occurred.

Trait Implementations

impl Clone for Location[src]

impl Debug for Location[src]

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

Auto Trait Implementations

impl RefUnwindSafe for Location[src]

impl Send for Location[src]

impl Sync for Location[src]

impl Unpin for Location[src]

impl UnwindSafe for Location[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.