[][src]Struct epsg::CRS

pub struct CRS {
    pub coord_ref_sys_code: i32,
    pub coord_ref_sys_name: &'static str,
    pub coord_ref_sys_kind: &'static str,
    pub coord_sys_code: i32,
    pub datum_code: i32,
    pub base_crs_code: i32,
    pub remarks: &'static str,
    pub information_source: &'static str,
    pub data_source: &'static str,
    pub revision_date: &'static str,
    pub deprecated: i16,
}

A coordinate reference system

Fields

coord_ref_sys_code: i32coord_ref_sys_name: &'static strcoord_ref_sys_kind: &'static strcoord_sys_code: i32datum_code: i32base_crs_code: i32remarks: &'static strinformation_source: &'static strdata_source: &'static strrevision_date: &'static strdeprecated: i16

Trait Implementations

impl Clone for CRS[src]

impl Copy for CRS[src]

impl Debug for CRS[src]

impl PartialEq<CRS> for CRS[src]

impl StructuralPartialEq for CRS[src]

impl TryFrom<String> for CRS[src]

type Error = &'static str

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for CRS

impl Send for CRS

impl Sync for CRS

impl Unpin for CRS

impl UnwindSafe for CRS

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,