pub enum CoordinateSystem {
ICRS,
FK5,
J2000,
B1950,
Apparent,
Unknown,
Custom(String),
}Variants§
Trait Implementations§
Source§impl Clone for CoordinateSystem
impl Clone for CoordinateSystem
Source§fn clone(&self) -> CoordinateSystem
fn clone(&self) -> CoordinateSystem
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 CoordinateSystem
impl Debug for CoordinateSystem
Source§impl Display for CoordinateSystem
impl Display for CoordinateSystem
Source§impl FromStr for CoordinateSystem
impl FromStr for CoordinateSystem
Source§impl Hash for CoordinateSystem
impl Hash for CoordinateSystem
Source§impl Ord for CoordinateSystem
impl Ord for CoordinateSystem
Source§fn cmp(&self, other: &CoordinateSystem) -> Ordering
fn cmp(&self, other: &CoordinateSystem) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CoordinateSystem
impl PartialEq for CoordinateSystem
Source§fn eq(&self, other: &CoordinateSystem) -> bool
fn eq(&self, other: &CoordinateSystem) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for CoordinateSystem
impl PartialOrd for CoordinateSystem
impl Eq for CoordinateSystem
impl StructuralPartialEq for CoordinateSystem
Auto Trait Implementations§
impl Freeze for CoordinateSystem
impl RefUnwindSafe for CoordinateSystem
impl Send for CoordinateSystem
impl Sync for CoordinateSystem
impl Unpin for CoordinateSystem
impl UnsafeUnpin for CoordinateSystem
impl UnwindSafe for CoordinateSystem
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