[][src]Struct tm_sys::ffi::tm_profiler_api

#[repr(C)]pub struct tm_profiler_api {
    pub init: Option<unsafe extern "C" fn(allocator: *mut tm_allocator_i, event_buffer_size: u32)>,
    pub shutdown: Option<unsafe extern "C" fn()>,
    pub enabled: *mut bool,
    pub begin: Option<unsafe extern "C" fn(name: *const c_char, category: *const c_char, object: *const c_char) -> u64>,
    pub end: Option<unsafe extern "C" fn(begin_id: u64)>,
    pub instant: Option<unsafe extern "C" fn(name: *const c_char, category: *const c_char, object: *const c_char)>,
    pub start: Option<unsafe extern "C" fn(name: *const c_char, category: *const c_char, object: *const c_char) -> u64>,
    pub finish: Option<unsafe extern "C" fn(start_id: u64)>,
    pub intern: Option<unsafe extern "C" fn(s: *const c_char) -> *const c_char>,
    pub fiber_switch: Option<unsafe extern "C" fn(from_fiber: u32, to_fiber: u32)>,
    pub submit: Option<unsafe extern "C" fn(events: *mut tm_profiler_event_t, count: u32)>,
    pub copy: Option<unsafe extern "C" fn(dest: *mut tm_profiler_event_t, start: u64, count: u32, actual_start: *mut u64, actual_count: *mut u32)>,
    pub buffer: Option<unsafe extern "C" fn() -> tm_profiler_buffer_t>,
}

Fields

init: Option<unsafe extern "C" fn(allocator: *mut tm_allocator_i, event_buffer_size: u32)>shutdown: Option<unsafe extern "C" fn()>enabled: *mut boolbegin: Option<unsafe extern "C" fn(name: *const c_char, category: *const c_char, object: *const c_char) -> u64>end: Option<unsafe extern "C" fn(begin_id: u64)>instant: Option<unsafe extern "C" fn(name: *const c_char, category: *const c_char, object: *const c_char)>start: Option<unsafe extern "C" fn(name: *const c_char, category: *const c_char, object: *const c_char) -> u64>finish: Option<unsafe extern "C" fn(start_id: u64)>intern: Option<unsafe extern "C" fn(s: *const c_char) -> *const c_char>fiber_switch: Option<unsafe extern "C" fn(from_fiber: u32, to_fiber: u32)>submit: Option<unsafe extern "C" fn(events: *mut tm_profiler_event_t, count: u32)>copy: Option<unsafe extern "C" fn(dest: *mut tm_profiler_event_t, start: u64, count: u32, actual_start: *mut u64, actual_count: *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]

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