pub enum MlLabelQuality {
Unknown,
Low,
Medium,
High,
Gold,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for MlLabelQuality
impl Clone for MlLabelQuality
Source§fn clone(&self) -> MlLabelQuality
fn clone(&self) -> MlLabelQuality
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 MlLabelQuality
impl Debug for MlLabelQuality
Source§impl Display for MlLabelQuality
impl Display for MlLabelQuality
Source§impl FromStr for MlLabelQuality
impl FromStr for MlLabelQuality
Source§type Err = MlLabelError
type Err = MlLabelError
The associated error which can be returned from parsing.
Source§fn from_str(
value: &str,
) -> Result<MlLabelQuality, <MlLabelQuality as FromStr>::Err>
fn from_str( value: &str, ) -> Result<MlLabelQuality, <MlLabelQuality as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for MlLabelQuality
impl Hash for MlLabelQuality
Source§impl Ord for MlLabelQuality
impl Ord for MlLabelQuality
Source§fn cmp(&self, other: &MlLabelQuality) -> Ordering
fn cmp(&self, other: &MlLabelQuality) -> 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 MlLabelQuality
impl PartialEq for MlLabelQuality
Source§fn eq(&self, other: &MlLabelQuality) -> bool
fn eq(&self, other: &MlLabelQuality) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MlLabelQuality
impl PartialOrd for MlLabelQuality
impl Copy for MlLabelQuality
impl Eq for MlLabelQuality
impl StructuralPartialEq for MlLabelQuality
Auto Trait Implementations§
impl Freeze for MlLabelQuality
impl RefUnwindSafe for MlLabelQuality
impl Send for MlLabelQuality
impl Sync for MlLabelQuality
impl Unpin for MlLabelQuality
impl UnsafeUnpin for MlLabelQuality
impl UnwindSafe for MlLabelQuality
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