[][src]Struct proj_sys::PROJ_CRS_LIST_PARAMETERS

#[repr(C)]pub struct PROJ_CRS_LIST_PARAMETERS {
    pub types: *const PJ_TYPE,
    pub typesCount: usize,
    pub crs_area_of_use_contains_bbox: 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 allow_deprecated: c_int,
}

Fields

types: *const PJ_TYPEtypesCount: usizecrs_area_of_use_contains_bbox: c_intbbox_valid: c_intwest_lon_degree: f64south_lat_degree: f64east_lon_degree: f64north_lat_degree: f64allow_deprecated: c_int

Trait Implementations

impl Clone for PROJ_CRS_LIST_PARAMETERS[src]

impl Copy for PROJ_CRS_LIST_PARAMETERS[src]

impl Debug for PROJ_CRS_LIST_PARAMETERS[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.