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

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.