pub struct MapProjectionMethod {
pub name: String,
pub identifiers: Vec<Identifier>,
}Expand description
The method (algorithm) used by a map projection.
WKT2 keywords: METHOD (preferred), PROJECTION (backward compatibility).
Fields§
§name: StringThe name of the method (e.g. “Transverse Mercator”).
identifiers: Vec<Identifier>Identifiers for this method.
Trait Implementations§
Source§impl Clone for MapProjectionMethod
impl Clone for MapProjectionMethod
Source§fn clone(&self) -> MapProjectionMethod
fn clone(&self) -> MapProjectionMethod
Returns a duplicate of the value. Read more
1.0.0 · 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 MapProjectionMethod
impl Debug for MapProjectionMethod
Source§impl Display for MapProjectionMethod
impl Display for MapProjectionMethod
Source§impl PartialEq for MapProjectionMethod
impl PartialEq for MapProjectionMethod
impl StructuralPartialEq for MapProjectionMethod
Auto Trait Implementations§
impl Freeze for MapProjectionMethod
impl RefUnwindSafe for MapProjectionMethod
impl Send for MapProjectionMethod
impl Sync for MapProjectionMethod
impl Unpin for MapProjectionMethod
impl UnsafeUnpin for MapProjectionMethod
impl UnwindSafe for MapProjectionMethod
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