pub enum RangeMeaning {
Exact,
Wraparound,
}Expand description
How the axis range between min and max values is interpreted.
WKT2 keyword: RANGEMEANING.
Variants§
Exact
The range boundaries are exact limits.
Wraparound
The range wraps around (e.g. longitude 0 to 360 degrees).
Trait Implementations§
Source§impl Clone for RangeMeaning
impl Clone for RangeMeaning
Source§fn clone(&self) -> RangeMeaning
fn clone(&self) -> RangeMeaning
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 RangeMeaning
impl Debug for RangeMeaning
Source§impl Display for RangeMeaning
impl Display for RangeMeaning
Source§impl PartialEq for RangeMeaning
impl PartialEq for RangeMeaning
impl Copy for RangeMeaning
impl StructuralPartialEq for RangeMeaning
Auto Trait Implementations§
impl Freeze for RangeMeaning
impl RefUnwindSafe for RangeMeaning
impl Send for RangeMeaning
impl Sync for RangeMeaning
impl Unpin for RangeMeaning
impl UnsafeUnpin for RangeMeaning
impl UnwindSafe for RangeMeaning
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