pub struct MapProjectionParameter {
pub name: String,
pub value: f64,
pub unit: Option<Unit>,
pub identifiers: Vec<Identifier>,
}Expand description
A single parameter of a map projection.
WKT2 keyword: PARAMETER.
Fields§
§name: StringThe parameter name (e.g. “Latitude of natural origin”).
value: f64The numeric value of the parameter.
unit: Option<Unit>The unit for the parameter value (angle, length, or scale).
identifiers: Vec<Identifier>Identifiers for this parameter.
Trait Implementations§
Source§impl Clone for MapProjectionParameter
impl Clone for MapProjectionParameter
Source§fn clone(&self) -> MapProjectionParameter
fn clone(&self) -> MapProjectionParameter
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 MapProjectionParameter
impl Debug for MapProjectionParameter
Source§impl Display for MapProjectionParameter
impl Display for MapProjectionParameter
Source§impl PartialEq for MapProjectionParameter
impl PartialEq for MapProjectionParameter
impl StructuralPartialEq for MapProjectionParameter
Auto Trait Implementations§
impl Freeze for MapProjectionParameter
impl RefUnwindSafe for MapProjectionParameter
impl Send for MapProjectionParameter
impl Sync for MapProjectionParameter
impl Unpin for MapProjectionParameter
impl UnsafeUnpin for MapProjectionParameter
impl UnwindSafe for MapProjectionParameter
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