#[repr(C)]pub struct tm_profiler_api {Show 13 fields
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 bool§begin: 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§
Source§impl Clone for tm_profiler_api
impl Clone for tm_profiler_api
Source§fn clone(&self) -> tm_profiler_api
fn clone(&self) -> tm_profiler_api
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for tm_profiler_api
Auto Trait Implementations§
impl Freeze for tm_profiler_api
impl RefUnwindSafe for tm_profiler_api
impl !Send for tm_profiler_api
impl !Sync for tm_profiler_api
impl Unpin for tm_profiler_api
impl UnwindSafe for tm_profiler_api
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more