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