pub enum ConnectionQualityScore {
Poor = 1,
Low = 2,
Medium = 3,
High = 4,
}
Expand description
Estimated connection quality.
Variants§
Poor = 1
Nearly all users dissatisfied.
Low = 2
Many users dissatisfied.
Medium = 3
Some users dissatisfied.
High = 4
Satisfied.
Trait Implementations§
Source§impl Clone for ConnectionQualityScore
impl Clone for ConnectionQualityScore
Source§fn clone(&self) -> ConnectionQualityScore
fn clone(&self) -> ConnectionQualityScore
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 ConnectionQualityScore
impl Debug for ConnectionQualityScore
Source§impl<'de> Deserialize<'de> for ConnectionQualityScore
impl<'de> Deserialize<'de> for ConnectionQualityScore
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ConnectionQualityScore
impl Display for ConnectionQualityScore
Source§impl Ord for ConnectionQualityScore
impl Ord for ConnectionQualityScore
Source§fn cmp(&self, other: &ConnectionQualityScore) -> Ordering
fn cmp(&self, other: &ConnectionQualityScore) -> 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 ConnectionQualityScore
impl PartialEq for ConnectionQualityScore
Source§impl PartialOrd for ConnectionQualityScore
impl PartialOrd for ConnectionQualityScore
Source§impl Serialize for ConnectionQualityScore
impl Serialize for ConnectionQualityScore
impl Copy for ConnectionQualityScore
impl Eq for ConnectionQualityScore
impl StructuralPartialEq for ConnectionQualityScore
Auto Trait Implementations§
impl Freeze for ConnectionQualityScore
impl RefUnwindSafe for ConnectionQualityScore
impl Send for ConnectionQualityScore
impl Sync for ConnectionQualityScore
impl Unpin for ConnectionQualityScore
impl UnwindSafe for ConnectionQualityScore
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