pub enum HotspotType {
    CpuIntensive,
    MemoryIntensive,
    IoBlocking,
    LockContention,
    AsyncOverhead,
    GarbageCollection,
    SystemCall,
    NetworkIo,
    DatabaseQuery,
    FileIo,
}Expand description
Hotspot type
Variants§
CpuIntensive
MemoryIntensive
IoBlocking
LockContention
AsyncOverhead
GarbageCollection
SystemCall
NetworkIo
DatabaseQuery
FileIo
Trait Implementations§
Source§impl Clone for HotspotType
 
impl Clone for HotspotType
Source§fn clone(&self) -> HotspotType
 
fn clone(&self) -> HotspotType
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 HotspotType
 
impl Debug for HotspotType
Source§impl<'de> Deserialize<'de> for HotspotType
 
impl<'de> Deserialize<'de> for HotspotType
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
Auto Trait Implementations§
impl Freeze for HotspotType
impl RefUnwindSafe for HotspotType
impl Send for HotspotType
impl Sync for HotspotType
impl Unpin for HotspotType
impl UnwindSafe for HotspotType
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