pub enum SingleCrs {
ProjectedCrs(Box<ProjectedCrs>),
GeogCrs(Box<GeogCrs>),
GeodCrs(Box<GeodCrs>),
VertCrs(Box<VertCrs>),
Other(String),
}Expand description
A single (non-compound) CRS, used as a component of a compound CRS.
Variants§
ProjectedCrs(Box<ProjectedCrs>)
A projected CRS.
GeogCrs(Box<GeogCrs>)
A geographic CRS.
GeodCrs(Box<GeodCrs>)
A geodetic CRS.
VertCrs(Box<VertCrs>)
A vertical CRS.
Other(String)
An unsupported CRS type, stored as raw WKT text.
Trait Implementations§
impl StructuralPartialEq for SingleCrs
Auto Trait Implementations§
impl Freeze for SingleCrs
impl RefUnwindSafe for SingleCrs
impl Send for SingleCrs
impl Sync for SingleCrs
impl Unpin for SingleCrs
impl UnsafeUnpin for SingleCrs
impl UnwindSafe for SingleCrs
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