jvmtiEventCallbacks_1

Struct jvmtiEventCallbacks_1 

Source
pub struct jvmtiEventCallbacks_1 {
Show 30 fields pub VMInit: Option<jvmtiEventVMInit>, pub VMDeath: Option<jvmtiEventVMDeath>, pub ThreadStart: Option<jvmtiEventThreadStart>, pub ThreadEnd: Option<jvmtiEventThreadEnd>, pub ClassFileLoadHook: Option<jvmtiEventClassFileLoadHook>, pub ClassLoad: Option<jvmtiEventClassLoad>, pub ClassPrepare: Option<jvmtiEventClassPrepare>, pub VMStart: Option<jvmtiEventVMStart>, pub Exception: Option<jvmtiEventException>, pub ExceptionCatch: Option<jvmtiEventExceptionCatch>, pub SingleStep: Option<jvmtiEventSingleStep>, pub FramePop: Option<jvmtiEventFramePop>, pub Breakpoint: Option<jvmtiEventBreakpoint>, pub FieldAccess: Option<jvmtiEventFieldAccess>, pub FieldModification: Option<jvmtiEventFieldModification>, pub MethodEntry: Option<jvmtiEventMethodEntry>, pub MethodExit: Option<jvmtiEventMethodExit>, pub NativeMethodBind: Option<jvmtiEventNativeMethodBind>, pub CompiledMethodLoad: Option<jvmtiEventCompiledMethodLoad>, pub CompiledMethodUnload: Option<jvmtiEventCompiledMethodUnload>, pub DynamicCodeGenerated: Option<jvmtiEventDynamicCodeGenerated>, pub DataDumpRequest: Option<jvmtiEventDataDumpRequest>, pub MonitorWait: Option<jvmtiEventMonitorWait>, pub MonitorWaited: Option<jvmtiEventMonitorWaited>, pub MonitorContendedEnter: Option<jvmtiEventMonitorContendedEnter>, pub MonitorContendedEntered: Option<jvmtiEventMonitorContendedEntered>, pub GarbageCollectionStart: Option<jvmtiEventGarbageCollectionStart>, pub GarbageCollectionFinish: Option<jvmtiEventGarbageCollectionFinish>, pub ObjectFree: Option<jvmtiEventObjectFree>, pub VMObjectAlloc: Option<jvmtiEventVMObjectAlloc>, /* private fields */
}

Fields§

§VMInit: Option<jvmtiEventVMInit>§VMDeath: Option<jvmtiEventVMDeath>§ThreadStart: Option<jvmtiEventThreadStart>§ThreadEnd: Option<jvmtiEventThreadEnd>§ClassFileLoadHook: Option<jvmtiEventClassFileLoadHook>§ClassLoad: Option<jvmtiEventClassLoad>§ClassPrepare: Option<jvmtiEventClassPrepare>§VMStart: Option<jvmtiEventVMStart>§Exception: Option<jvmtiEventException>§ExceptionCatch: Option<jvmtiEventExceptionCatch>§SingleStep: Option<jvmtiEventSingleStep>§FramePop: Option<jvmtiEventFramePop>§Breakpoint: Option<jvmtiEventBreakpoint>§FieldAccess: Option<jvmtiEventFieldAccess>§FieldModification: Option<jvmtiEventFieldModification>§MethodEntry: Option<jvmtiEventMethodEntry>§MethodExit: Option<jvmtiEventMethodExit>§NativeMethodBind: Option<jvmtiEventNativeMethodBind>§CompiledMethodLoad: Option<jvmtiEventCompiledMethodLoad>§CompiledMethodUnload: Option<jvmtiEventCompiledMethodUnload>§DynamicCodeGenerated: Option<jvmtiEventDynamicCodeGenerated>§DataDumpRequest: Option<jvmtiEventDataDumpRequest>§MonitorWait: Option<jvmtiEventMonitorWait>§MonitorWaited: Option<jvmtiEventMonitorWaited>§MonitorContendedEnter: Option<jvmtiEventMonitorContendedEnter>§MonitorContendedEntered: Option<jvmtiEventMonitorContendedEntered>§GarbageCollectionStart: Option<jvmtiEventGarbageCollectionStart>§GarbageCollectionFinish: Option<jvmtiEventGarbageCollectionFinish>§ObjectFree: Option<jvmtiEventObjectFree>§VMObjectAlloc: Option<jvmtiEventVMObjectAlloc>

Trait Implementations§

Source§

impl Clone for jvmtiEventCallbacks_1

Source§

fn clone(&self) -> jvmtiEventCallbacks_1

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for jvmtiEventCallbacks_1

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.