pub enum OnstreetParking {
    JustOSM,
    Blockface(String),
    SomeAdditionalWhereNoData {
        pct: usize,
    },
}
Expand description

What roads will have on-street parking lanes? Data from https://wiki.openstreetmap.org/wiki/Key:parking:lane is always used if available.

Variants

JustOSM

If not tagged, there won’t be parking.

Blockface(String)

If OSM data is missing, then try to match data from http://data-seattlecitygis.opendata.arcgis.com/datasets/blockface. This is Seattle specific.

SomeAdditionalWhereNoData

Fields

pct: usize

[0, 100]

If OSM data is missing, then infer parking lanes on some percentage of “highway=residential” roads.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.