pub enum PerformanceLevel {
Excellent,
Good,
Fair,
Poor,
Inadequate,
}
Variants§
Trait Implementations§
Source§impl Clone for PerformanceLevel
impl Clone for PerformanceLevel
Source§fn clone(&self) -> PerformanceLevel
fn clone(&self) -> PerformanceLevel
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 PerformanceLevel
impl Debug for PerformanceLevel
Source§impl<'de> Deserialize<'de> for PerformanceLevel
impl<'de> Deserialize<'de> for PerformanceLevel
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 PartialEq for PerformanceLevel
impl PartialEq for PerformanceLevel
Source§impl Serialize for PerformanceLevel
impl Serialize for PerformanceLevel
impl Eq for PerformanceLevel
impl StructuralPartialEq for PerformanceLevel
Auto Trait Implementations§
impl Freeze for PerformanceLevel
impl RefUnwindSafe for PerformanceLevel
impl Send for PerformanceLevel
impl Sync for PerformanceLevel
impl Unpin for PerformanceLevel
impl UnwindSafe for PerformanceLevel
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