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