pub enum CoordinateFrame {
Equatorial,
Ecliptic,
Galactic,
Horizontal,
Supergalactic,
Unknown,
Custom(String),
}Variants§
Trait Implementations§
Source§impl Clone for CoordinateFrame
impl Clone for CoordinateFrame
Source§fn clone(&self) -> CoordinateFrame
fn clone(&self) -> CoordinateFrame
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 CoordinateFrame
impl Debug for CoordinateFrame
Source§impl Display for CoordinateFrame
impl Display for CoordinateFrame
Source§impl FromStr for CoordinateFrame
impl FromStr for CoordinateFrame
Source§impl Hash for CoordinateFrame
impl Hash for CoordinateFrame
Source§impl Ord for CoordinateFrame
impl Ord for CoordinateFrame
Source§fn cmp(&self, other: &CoordinateFrame) -> Ordering
fn cmp(&self, other: &CoordinateFrame) -> Ordering
1.21.0 · 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 CoordinateFrame
impl PartialEq for CoordinateFrame
Source§impl PartialOrd for CoordinateFrame
impl PartialOrd for CoordinateFrame
impl Eq for CoordinateFrame
impl StructuralPartialEq for CoordinateFrame
Auto Trait Implementations§
impl Freeze for CoordinateFrame
impl RefUnwindSafe for CoordinateFrame
impl Send for CoordinateFrame
impl Sync for CoordinateFrame
impl Unpin for CoordinateFrame
impl UnsafeUnpin for CoordinateFrame
impl UnwindSafe for CoordinateFrame
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