pub enum HotspotSeverity {
Normal,
Warm,
Hot,
}Expand description
Hotspot classification.
Variants§
Normal
Load is within configured limits.
Warm
Load is near or slightly over limits.
Hot
Load is clearly over limits and should trigger mitigation.
Trait Implementations§
Source§impl Clone for HotspotSeverity
impl Clone for HotspotSeverity
Source§fn clone(&self) -> HotspotSeverity
fn clone(&self) -> HotspotSeverity
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 moreimpl Copy for HotspotSeverity
Source§impl Debug for HotspotSeverity
impl Debug for HotspotSeverity
impl Eq for HotspotSeverity
Source§impl PartialEq for HotspotSeverity
impl PartialEq for HotspotSeverity
impl StructuralPartialEq for HotspotSeverity
Auto Trait Implementations§
impl Freeze for HotspotSeverity
impl RefUnwindSafe for HotspotSeverity
impl Send for HotspotSeverity
impl Sync for HotspotSeverity
impl Unpin for HotspotSeverity
impl UnsafeUnpin for HotspotSeverity
impl UnwindSafe for HotspotSeverity
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