[][src]Struct tm_sys::ffi::tm_engine_i

#[repr(C)]pub struct tm_engine_i {
    pub name: *const c_char,
    pub disabled: bool,
    pub _padding_215: [c_char; 3],
    pub num_components: u32,
    pub components: [u32; 16],
    pub excludes: [bool; 16],
    pub writes: [bool; 16],
    pub inst: *mut tm_engine_o,
    pub update: Option<unsafe extern "C" fn(inst: *mut tm_engine_o, data: *mut tm_engine_update_set_t)>,
    pub filter: Option<unsafe extern "C" fn(inst: *mut tm_engine_o, components: *const u32, num_components: u32, mask: *const tm_component_mask_t) -> bool>,
}

Fields

name: *const c_chardisabled: bool_padding_215: [c_char; 3]num_components: u32components: [u32; 16]excludes: [bool; 16]writes: [bool; 16]inst: *mut tm_engine_oupdate: Option<unsafe extern "C" fn(inst: *mut tm_engine_o, data: *mut tm_engine_update_set_t)>filter: Option<unsafe extern "C" fn(inst: *mut tm_engine_o, components: *const u32, num_components: u32, mask: *const tm_component_mask_t) -> bool>

Trait Implementations

impl Clone for tm_engine_i[src]

impl Copy for tm_engine_i[src]

impl Default for tm_engine_i[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.