[][src]Struct proj_sys::PROJ_CRS_INFO

#[repr(C)]pub struct PROJ_CRS_INFO {
    pub auth_name: *mut c_char,
    pub code: *mut c_char,
    pub name: *mut c_char,
    pub type_: PJ_TYPE,
    pub deprecated: c_int,
    pub bbox_valid: c_int,
    pub west_lon_degree: f64,
    pub south_lat_degree: f64,
    pub east_lon_degree: f64,
    pub north_lat_degree: f64,
    pub area_name: *mut c_char,
    pub projection_method_name: *mut c_char,
}

Fields

auth_name: *mut c_charcode: *mut c_charname: *mut c_chartype_: PJ_TYPEdeprecated: c_intbbox_valid: c_intwest_lon_degree: f64south_lat_degree: f64east_lon_degree: f64north_lat_degree: f64area_name: *mut c_charprojection_method_name: *mut c_char

Trait Implementations

impl Clone for PROJ_CRS_INFO[src]

impl Copy for PROJ_CRS_INFO[src]

impl Debug for PROJ_CRS_INFO[src]

Auto Trait Implementations

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> 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.