pub enum EventType {
MethodLoadFinished(MethodLoad),
Shutdown,
}Expand description
Type of event to be dispatched through ittapi’s JIT event API.
Variants§
MethodLoadFinished(MethodLoad)
Send this event after a JITted method has been loaded into memory, and possibly JIT compiled, but before the code is executed.
Shutdown
Send this notification to terminate profiling.
Auto Trait Implementations§
impl Freeze for EventType
impl RefUnwindSafe for EventType
impl !Send for EventType
impl !Sync for EventType
impl Unpin for EventType
impl UnwindSafe for EventType
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