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