pub enum AuxLat {
GEOGRAPHIC = 0,
PARAMETRIC = 1,
GEOCENTRIC = 2,
RECTIFYING = 3,
CONFORMAL = 4,
AUTHALIC = 5,
NUMBER = 6,
}Expand description
List of auxiliary latitudes
Variants§
GEOGRAPHIC = 0
Geographic latitude, phi
PARAMETRIC = 1
Parametric latitude, beta
GEOCENTRIC = 2
Geocentric latitude, theta
RECTIFYING = 3
Rectifying latitude, mu
CONFORMAL = 4
Conformal latitude, chi
AUTHALIC = 5
Authlatic latitude, xi
NUMBER = 6
Number of auxiliary latitudes (6)
Implementations§
Trait Implementations§
Source§impl PartialOrd for AuxLat
impl PartialOrd for AuxLat
impl Copy for AuxLat
impl StructuralPartialEq for AuxLat
Auto Trait Implementations§
impl Freeze for AuxLat
impl RefUnwindSafe for AuxLat
impl Send for AuxLat
impl Sync for AuxLat
impl Unpin for AuxLat
impl UnwindSafe for AuxLat
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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