[][src]Struct ittapi_rs::___itt_module_object

#[repr(C)]pub struct ___itt_module_object {
    pub version: c_uint,
    pub module_id: __itt_id,
    pub module_type: __itt_module_type,
    pub module_name: *const c_char,
    pub module_buffer: *mut c_void,
    pub module_size: usize,
    pub section_array: *mut __itt_section_info,
    pub section_number: usize,
}

Fields

version: c_uint

< API version

module_id: __itt_id

< Unique identifier. This is unchanged for sections that belong to the same module

module_type: __itt_module_type

< Binary module format

module_name: *const c_char

< Unique module name or path to module in UTF8 Contains module name when module_bufer and module_size exist Contains module path when module_bufer and module_size absent module_name remains the same for the certain module_id

module_buffer: *mut c_void

< Module buffer content

module_size: usize

< Module buffer size */ If module_buffer and module_size do not exist, the binary module exists on the system already. The module_name parameter contains the path to the module.

section_array: *mut __itt_section_info

< Reference to section information

section_number: usize

Trait Implementations

impl Clone for ___itt_module_object[src]

impl Copy for ___itt_module_object[src]

impl Debug for ___itt_module_object[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.