Struct zip_codes::Record [] [src]

pub struct Record {
    pub zip_code: &'static str,
    pub zip_code_type: Type,
    pub city: &'static str,
    pub state: &'static str,
    pub coordinates: Option<(f64, f64)>,
    pub is_decommissioned: bool,
    pub tax_returns_filed: Option<u64>,
    pub estimated_population: Option<u64>,
    pub total_wages: Option<u64>,
}

Information for a single ZIP code.

Fields

The 5-digit ZIP code.

The ZIP code classification.

The city to which the ZIP code belongs (all uppercase).

The state to which the ZIP code belongs (two letter abbreviation).

Latitude and longitude

If true, the ZIP code is historical; if false, the ZIP code is current.

The number of individual tax returns filed as of 2008.

The estimated population of the area of the ZIP code.

Total yearly wages of the population.

Trait Implementations

impl Clone for Record
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Record
[src]

Formats the value using the given formatter.