pub struct GeographicCoordinateSystem {
pub type_: String,
pub epsg: Option<i64>,
pub wkt: Option<String>,
}Expand description
Geographic coordinate system info (Table 262).
Fields§
§type_: String/Type - should be GEOGCS.
epsg: Option<i64>/EPSG - EPSG code (e.g., 4326 for WGS 84).
wkt: Option<String>/WKT - Well-Known Text coordinate system definition.
Trait Implementations§
Source§impl Clone for GeographicCoordinateSystem
impl Clone for GeographicCoordinateSystem
Source§fn clone(&self) -> GeographicCoordinateSystem
fn clone(&self) -> GeographicCoordinateSystem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GeographicCoordinateSystem
impl RefUnwindSafe for GeographicCoordinateSystem
impl Send for GeographicCoordinateSystem
impl Sync for GeographicCoordinateSystem
impl Unpin for GeographicCoordinateSystem
impl UnsafeUnpin for GeographicCoordinateSystem
impl UnwindSafe for GeographicCoordinateSystem
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more