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 RefUnwindSafe for EventType
impl !Send for EventType
impl !Sync for EventType
impl Unpin for EventType
impl UnwindSafe for EventType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more