#[repr(C)]
pub struct _iJIT_Method_Inline_Load { pub method_id: c_uint, pub parent_method_id: c_uint, pub method_name: *mut c_char, pub method_load_address: *mut c_void, pub method_size: c_uint, pub line_number_size: c_uint, pub line_number_table: pLineNumberInfo, pub class_file_name: *mut c_char, pub source_file_name: *mut c_char, }
Expand description

@brief Description of an inline JIT-compiled method @details When you use the_iJIT_Method_Inline_Load structure to describe the JIT compiled method, use iJVM_EVENT_TYPE_METHOD_INLINE_LOAD_FINISHED as an event type to report it.

Fields§

§method_id: c_uint

<\brief Unique method ID. Cannot be 0. You must either use the API function iJIT_GetNewMethodID to get a valid and unique method ID, or else manage ID uniqueness and correct range by yourself.

§parent_method_id: c_uint

<\brief Unique immediate parent’s method ID. Cannot be 0. You must either use the API function iJIT_GetNewMethodID to get a valid and unique method ID, or else manage ID uniqueness and correct range by yourself.

§method_name: *mut c_char

<\brief The name of the method. It can be optionally prefixed with its class name and appended with its complete signature. Can’t be NULL.

§method_load_address: *mut c_void§method_size: c_uint

<\brief The code size of the method in memory. If 0, then data provided with the event are not accepted.

§line_number_size: c_uint

<\brief The number of entries in the line number table. 0 if none.

§line_number_table: pLineNumberInfo

<\brief Pointer to the line numbers info array. Can be NULL if line_number_size is 0. See LineNumberInfo Structure for a description of a single entry in the line number info array

§class_file_name: *mut c_char

<\brief Class name. Can be NULL.

§source_file_name: *mut c_char

<\brief Source file name. Can be NULL.

Trait Implementations§

source§

impl Clone for _iJIT_Method_Inline_Load

source§

fn clone(&self) -> _iJIT_Method_Inline_Load

Returns a copy 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 Debug for _iJIT_Method_Inline_Load

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for _iJIT_Method_Inline_Load

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> 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,

§

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>,

§

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>,

§

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.