pub struct Hotspot {
pub unit_id: u64,
pub score: f32,
pub factors: HashMap<String, f32>,
}Expand description
A detected hotspot.
Fields§
§unit_id: u64The unit.
score: f32Hotspot score (higher = more concerning).
factors: HashMap<String, f32>Contributing factors.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Hotspot
impl RefUnwindSafe for Hotspot
impl Send for Hotspot
impl Sync for Hotspot
impl Unpin for Hotspot
impl UnsafeUnpin for Hotspot
impl UnwindSafe for Hotspot
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