pub struct VerticalCrs {
pub epsg: Option<u16>,
pub datum: Option<u16>,
pub units: Option<u16>,
pub citation: Option<String>,
}Expand description
Vertical CRS component extracted from GeoKeys.
Fields§
§epsg: Option<u16>EPSG code for a vertical CRS (VerticalCSTypeGeoKey / 4096).
datum: Option<u16>Vertical datum code (VerticalDatumGeoKey / 4098).
units: Option<u16>Vertical units code (VerticalUnitsGeoKey / 4099).
citation: Option<String>Citation string for the vertical CRS.
Trait Implementations§
Source§impl Clone for VerticalCrs
impl Clone for VerticalCrs
Source§fn clone(&self) -> VerticalCrs
fn clone(&self) -> VerticalCrs
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 moreSource§impl Debug for VerticalCrs
impl Debug for VerticalCrs
Source§impl Default for VerticalCrs
impl Default for VerticalCrs
Source§fn default() -> VerticalCrs
fn default() -> VerticalCrs
Returns the “default value” for a type. Read more
Source§impl PartialEq for VerticalCrs
impl PartialEq for VerticalCrs
Source§fn eq(&self, other: &VerticalCrs) -> bool
fn eq(&self, other: &VerticalCrs) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for VerticalCrs
impl StructuralPartialEq for VerticalCrs
Auto Trait Implementations§
impl Freeze for VerticalCrs
impl RefUnwindSafe for VerticalCrs
impl Send for VerticalCrs
impl Sync for VerticalCrs
impl Unpin for VerticalCrs
impl UnsafeUnpin for VerticalCrs
impl UnwindSafe for VerticalCrs
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more