[][src]Struct tm_rs::ffi::tm_profiler_api

#[repr(C)]pub struct tm_profiler_api {
    pub init: Option<unsafe extern "C" fn(*mut tm_allocator_i, u32)>,
    pub shutdown: Option<unsafe extern "C" fn()>,
    pub enabled: *mut bool,
    pub begin: Option<unsafe extern "C" fn(*const i8, *const i8, *const i8) -> u64>,
    pub end: Option<unsafe extern "C" fn(u64)>,
    pub instant: Option<unsafe extern "C" fn(*const i8, *const i8, *const i8)>,
    pub start: Option<unsafe extern "C" fn(*const i8, *const i8, *const i8) -> u64>,
    pub finish: Option<unsafe extern "C" fn(u64)>,
    pub intern: Option<unsafe extern "C" fn(*const i8) -> *const i8>,
    pub fiber_switch: Option<unsafe extern "C" fn(u32, u32)>,
    pub submit: Option<unsafe extern "C" fn(*mut tm_profiler_event_t, u32)>,
    pub copy: Option<unsafe extern "C" fn(*mut tm_profiler_event_t, u64, u32, *mut u64, *mut u32)>,
    pub buffer: Option<unsafe extern "C" fn() -> tm_profiler_buffer_t>,
}

Fields

init: Option<unsafe extern "C" fn(*mut tm_allocator_i, u32)>shutdown: Option<unsafe extern "C" fn()>enabled: *mut boolbegin: Option<unsafe extern "C" fn(*const i8, *const i8, *const i8) -> u64>end: Option<unsafe extern "C" fn(u64)>instant: Option<unsafe extern "C" fn(*const i8, *const i8, *const i8)>start: Option<unsafe extern "C" fn(*const i8, *const i8, *const i8) -> u64>finish: Option<unsafe extern "C" fn(u64)>intern: Option<unsafe extern "C" fn(*const i8) -> *const i8>fiber_switch: Option<unsafe extern "C" fn(u32, u32)>submit: Option<unsafe extern "C" fn(*mut tm_profiler_event_t, u32)>copy: Option<unsafe extern "C" fn(*mut tm_profiler_event_t, u64, u32, *mut u64, *mut u32)>buffer: Option<unsafe extern "C" fn() -> tm_profiler_buffer_t>

Trait Implementations

impl Clone for tm_profiler_api[src]

impl Copy for tm_profiler_api[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Any for T where
    T: Any
[src]

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

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

impl<T> CloneAny for T where
    T: Clone + Any
[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.