Enum google_geocoding::LocationType[][src]

pub enum LocationType {
    Rooftop,
    RangeInterpolated,
    GeometricCenter,
    Approximate,
}

What location Geometry refers to

Variants

Indicates that the returned result is a precise geocode for which we have location information accurate down to street address precision.

Indicates that the returned result reflects an approximation (usually on a road) interpolated between two precise points (such as intersections). Interpolated results are generally returned when rooftop geocodes are unavailable for a street address.

Indicates that the returned result is the geometric center of a result such as a polyline (for example, a street) or polygon (region).

Indicates that the returned result is approximate.

Trait Implementations

impl Clone for LocationType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for LocationType
[src]

impl Debug for LocationType
[src]

Formats the value using the given formatter. Read more

impl Eq for LocationType
[src]

impl Hash for LocationType
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for LocationType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations