Enum geojson::Crs [] [src]

pub enum Crs {
    Named {
        name: String,
    },
    Linked {
        href: String,
        type_: Option<String>,
    },
}

Coordinate Reference System Objects

GeoJSON Format Specification § 3

Variants

Fields of Named

Fields of Linked

Trait Implementations

impl Clone for Crs
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Crs
[src]

Formats the value using the given formatter.

impl PartialEq for Crs
[src]

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

This method tests for !=.

impl Serialize for Crs
[src]

Serialize this value into the given Serde serializer. Read more

impl Deserialize for Crs
[src]

Deserialize this value from the given Serde deserializer. Read more