pub enum PerformanceCategory {
HighPerformance,
ScalableOptimal,
SmallScaleOptimal,
GeneralPurpose,
Poor,
}Expand description
Performance category classification for frameworks
Variants§
HighPerformance
Consistently fast across all scales
ScalableOptimal
Gets better at larger scales
SmallScaleOptimal
Good for small scales only
GeneralPurpose
Decent across all scales
Poor
Consistently slow performance
Trait Implementations§
Source§impl Clone for PerformanceCategory
impl Clone for PerformanceCategory
Source§fn clone(&self) -> PerformanceCategory
fn clone(&self) -> PerformanceCategory
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 moreAuto Trait Implementations§
impl Freeze for PerformanceCategory
impl RefUnwindSafe for PerformanceCategory
impl Send for PerformanceCategory
impl Sync for PerformanceCategory
impl Unpin for PerformanceCategory
impl UnwindSafe for PerformanceCategory
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