[][src]Struct halide_runtime::runtime::halide_profiler_state

#[repr(C)]pub struct halide_profiler_state {
    pub lock: halide_mutex,
    pub sleep_time: c_int,
    pub first_free_id: c_int,
    pub current_func: c_int,
    pub active_threads: c_int,
    pub pipelines: *mut halide_profiler_pipeline_stats,
    pub get_remote_profiler_state: Option<unsafe extern "C" fn(func: *mut c_int, active_workers: *mut c_int)>,
    pub sampling_thread: *mut halide_thread,
}

Fields

lock: halide_mutexsleep_time: c_intfirst_free_id: c_intcurrent_func: c_intactive_threads: c_intpipelines: *mut halide_profiler_pipeline_statsget_remote_profiler_state: Option<unsafe extern "C" fn(func: *mut c_int, active_workers: *mut c_int)>sampling_thread: *mut halide_thread

Trait Implementations

impl Clone for halide_profiler_state[src]

impl Copy for halide_profiler_state[src]

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