[][src]Struct ittapi_rs::___itt_track_group

#[repr(C)]pub struct ___itt_track_group {
    pub name: *mut __itt_string_handle,
    pub track: *mut ___itt_track,
    pub tgtype: __itt_track_group_type,
    pub extra1: c_int,
    pub extra2: *mut c_void,
    pub next: *mut ___itt_track_group,
}

Fields

name: *mut __itt_string_handle

< Name of the track group

track: *mut ___itt_track

< List of child tracks

tgtype: __itt_track_group_type

< Type of the track group

extra1: c_int

< Reserved. Must be zero

extra2: *mut c_void

< Reserved. Must be zero

next: *mut ___itt_track_group

Trait Implementations

impl Clone for ___itt_track_group[src]

impl Copy for ___itt_track_group[src]

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