pub enum SeeingCondition {
Excellent,
Good,
Fair,
Poor,
Unknown,
Custom(String),
}Variants§
Trait Implementations§
Source§impl Clone for SeeingCondition
impl Clone for SeeingCondition
Source§fn clone(&self) -> SeeingCondition
fn clone(&self) -> SeeingCondition
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 SeeingCondition
impl Debug for SeeingCondition
Source§impl Display for SeeingCondition
impl Display for SeeingCondition
Source§impl FromStr for SeeingCondition
impl FromStr for SeeingCondition
Source§impl Hash for SeeingCondition
impl Hash for SeeingCondition
Source§impl Ord for SeeingCondition
impl Ord for SeeingCondition
Source§fn cmp(&self, other: &SeeingCondition) -> Ordering
fn cmp(&self, other: &SeeingCondition) -> 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 SeeingCondition
impl PartialEq for SeeingCondition
Source§impl PartialOrd for SeeingCondition
impl PartialOrd for SeeingCondition
impl Eq for SeeingCondition
impl StructuralPartialEq for SeeingCondition
Auto Trait Implementations§
impl Freeze for SeeingCondition
impl RefUnwindSafe for SeeingCondition
impl Send for SeeingCondition
impl Sync for SeeingCondition
impl Unpin for SeeingCondition
impl UnsafeUnpin for SeeingCondition
impl UnwindSafe for SeeingCondition
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