pub enum ObservationKind {
Visual,
Photometric,
Spectroscopic,
Astrometric,
Radio,
Infrared,
Ultraviolet,
XRay,
GammaRay,
Unknown,
Custom(String),
}Variants§
Visual
Photometric
Spectroscopic
Astrometric
Radio
Infrared
Ultraviolet
XRay
GammaRay
Unknown
Custom(String)
Trait Implementations§
Source§impl Clone for ObservationKind
impl Clone for ObservationKind
Source§fn clone(&self) -> ObservationKind
fn clone(&self) -> ObservationKind
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 ObservationKind
impl Debug for ObservationKind
Source§impl Display for ObservationKind
impl Display for ObservationKind
Source§impl FromStr for ObservationKind
impl FromStr for ObservationKind
Source§impl Hash for ObservationKind
impl Hash for ObservationKind
Source§impl Ord for ObservationKind
impl Ord for ObservationKind
Source§fn cmp(&self, other: &ObservationKind) -> Ordering
fn cmp(&self, other: &ObservationKind) -> 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 ObservationKind
impl PartialEq for ObservationKind
Source§impl PartialOrd for ObservationKind
impl PartialOrd for ObservationKind
impl Eq for ObservationKind
impl StructuralPartialEq for ObservationKind
Auto Trait Implementations§
impl Freeze for ObservationKind
impl RefUnwindSafe for ObservationKind
impl Send for ObservationKind
impl Sync for ObservationKind
impl Unpin for ObservationKind
impl UnsafeUnpin for ObservationKind
impl UnwindSafe for ObservationKind
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