pub enum OrbitDirection {
Prograde,
Retrograde,
Polar,
Unknown,
Custom(String),
}Variants§
Trait Implementations§
Source§impl Clone for OrbitDirection
impl Clone for OrbitDirection
Source§fn clone(&self) -> OrbitDirection
fn clone(&self) -> OrbitDirection
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 OrbitDirection
impl Debug for OrbitDirection
Source§impl Display for OrbitDirection
impl Display for OrbitDirection
Source§impl FromStr for OrbitDirection
impl FromStr for OrbitDirection
Source§impl Hash for OrbitDirection
impl Hash for OrbitDirection
Source§impl Ord for OrbitDirection
impl Ord for OrbitDirection
Source§fn cmp(&self, other: &OrbitDirection) -> Ordering
fn cmp(&self, other: &OrbitDirection) -> 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 OrbitDirection
impl PartialEq for OrbitDirection
Source§fn eq(&self, other: &OrbitDirection) -> bool
fn eq(&self, other: &OrbitDirection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for OrbitDirection
impl PartialOrd for OrbitDirection
impl Eq for OrbitDirection
impl StructuralPartialEq for OrbitDirection
Auto Trait Implementations§
impl Freeze for OrbitDirection
impl RefUnwindSafe for OrbitDirection
impl Send for OrbitDirection
impl Sync for OrbitDirection
impl Unpin for OrbitDirection
impl UnsafeUnpin for OrbitDirection
impl UnwindSafe for OrbitDirection
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