Struct plaid::api::data::address::Address [] [src]

pub struct Address {
    pub zip: Option<String>,
    pub state: Option<String>,
    pub city: Option<String>,
    pub street: Option<String>,
    pub longitude: Option<f64>,
    pub latitude: Option<f64>,
}

A user's address, as returned by Plaid.

Fields

zip

The address zip code part.

state

The address state part.

city

The address city part.

street

The address street part.

longitude

Longitude.

latitude

Latitude.

Trait Implementations

impl Decodable for Address

fn decode<D: Decoder>(d: &mut D) -> Result<Address, D::Error>

Derived Implementations

impl Debug for Address

fn fmt(&self, __arg_0: &mut Formatter) -> Result