#[repr(C)]pub struct tm_engine_i {
pub name: *const i8,
pub disabled: bool,
pub _padding_215: [i8; 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(*mut tm_engine_o, *mut tm_engine_update_set_t)>,
pub filter: Option<unsafe extern "C" fn(*mut tm_engine_o, *const u32, u32, *const tm_component_mask_t) -> bool>,
}Fields§
§name: *const i8§disabled: bool§_padding_215: [i8; 3]§num_components: u32§components: [u32; 16]§excludes: [bool; 16]§writes: [bool; 16]§inst: *mut tm_engine_o§update: Option<unsafe extern "C" fn(*mut tm_engine_o, *mut tm_engine_update_set_t)>§filter: Option<unsafe extern "C" fn(*mut tm_engine_o, *const u32, u32, *const tm_component_mask_t) -> bool>Trait Implementations§
Source§impl Clone for tm_engine_i
impl Clone for tm_engine_i
Source§fn clone(&self) -> tm_engine_i
fn clone(&self) -> tm_engine_i
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_engine_i
Auto Trait Implementations§
impl Freeze for tm_engine_i
impl RefUnwindSafe for tm_engine_i
impl !Send for tm_engine_i
impl !Sync for tm_engine_i
impl Unpin for tm_engine_i
impl UnwindSafe for tm_engine_i
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