[][src]Struct ittapi_rs::___itt_domain

#[repr(C)]pub struct ___itt_domain {
    pub flags: c_int,
    pub nameA: *const c_char,
    pub nameW: *mut c_void,
    pub extra1: c_int,
    pub extra2: *mut c_void,
    pub next: *mut ___itt_domain,
}

Fields

flags: c_int

< Zero if disabled, non-zero if enabled. The meaning of different non-zero values is reserved to the runtime

nameA: *const c_char

< Copy of original name in ASCII.

nameW: *mut c_voidextra1: c_int

< Reserved to the runtime

extra2: *mut c_void

< Reserved to the runtime

next: *mut ___itt_domain

Trait Implementations

impl Clone for ___itt_domain[src]

impl Copy for ___itt_domain[src]

impl Debug for ___itt_domain[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.