pub enum ObservationInstrumentKind {
Telescope,
RadioTelescope,
Spectrograph,
Camera,
Photometer,
Interferometer,
SpaceTelescope,
Unknown,
Custom(String),
}Variants§
Telescope
RadioTelescope
Spectrograph
Camera
Photometer
Interferometer
SpaceTelescope
Unknown
Custom(String)
Trait Implementations§
Source§impl Clone for ObservationInstrumentKind
impl Clone for ObservationInstrumentKind
Source§fn clone(&self) -> ObservationInstrumentKind
fn clone(&self) -> ObservationInstrumentKind
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 ObservationInstrumentKind
impl Debug for ObservationInstrumentKind
Source§impl Display for ObservationInstrumentKind
impl Display for ObservationInstrumentKind
Source§impl FromStr for ObservationInstrumentKind
impl FromStr for ObservationInstrumentKind
Source§impl Hash for ObservationInstrumentKind
impl Hash for ObservationInstrumentKind
Source§impl Ord for ObservationInstrumentKind
impl Ord for ObservationInstrumentKind
Source§fn cmp(&self, other: &ObservationInstrumentKind) -> Ordering
fn cmp(&self, other: &ObservationInstrumentKind) -> 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 PartialOrd for ObservationInstrumentKind
impl PartialOrd for ObservationInstrumentKind
impl Eq for ObservationInstrumentKind
impl StructuralPartialEq for ObservationInstrumentKind
Auto Trait Implementations§
impl Freeze for ObservationInstrumentKind
impl RefUnwindSafe for ObservationInstrumentKind
impl Send for ObservationInstrumentKind
impl Sync for ObservationInstrumentKind
impl Unpin for ObservationInstrumentKind
impl UnsafeUnpin for ObservationInstrumentKind
impl UnwindSafe for ObservationInstrumentKind
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