pub enum AreaOfInterestCrs {
GeographicDegrees,
GeographicDegreesWrapped,
SourceCrs,
TargetCrs,
}Variants§
GeographicDegrees
Geographic degrees with conventional west <= east bounds.
GeographicDegreesWrapped
Geographic degrees with bounds crossing the antimeridian, represented by west > east.
SourceCrs
TargetCrs
Implementations§
Trait Implementations§
Source§impl Clone for AreaOfInterestCrs
impl Clone for AreaOfInterestCrs
Source§fn clone(&self) -> AreaOfInterestCrs
fn clone(&self) -> AreaOfInterestCrs
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 AreaOfInterestCrs
impl Debug for AreaOfInterestCrs
Source§impl PartialEq for AreaOfInterestCrs
impl PartialEq for AreaOfInterestCrs
Source§fn eq(&self, other: &AreaOfInterestCrs) -> bool
fn eq(&self, other: &AreaOfInterestCrs) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AreaOfInterestCrs
impl Eq for AreaOfInterestCrs
impl StructuralPartialEq for AreaOfInterestCrs
Auto Trait Implementations§
impl Freeze for AreaOfInterestCrs
impl RefUnwindSafe for AreaOfInterestCrs
impl Send for AreaOfInterestCrs
impl Sync for AreaOfInterestCrs
impl Unpin for AreaOfInterestCrs
impl UnsafeUnpin for AreaOfInterestCrs
impl UnwindSafe for AreaOfInterestCrs
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<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