#[repr(C)]pub struct ss_plugin_table_fields_vtable {
pub list_table_fields: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t, nfields: *mut u32) -> *const ss_plugin_table_fieldinfo>,
pub get_table_field: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t, name: *const c_char, data_type: ss_plugin_state_type) -> *mut ss_plugin_table_field_t>,
pub add_table_field: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t, name: *const c_char, data_type: ss_plugin_state_type) -> *mut ss_plugin_table_field_t>,
}
Fields§
§list_table_fields: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t, nfields: *mut u32) -> *const ss_plugin_table_fieldinfo>
§get_table_field: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t, name: *const c_char, data_type: ss_plugin_state_type) -> *mut ss_plugin_table_field_t>
§add_table_field: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t, name: *const c_char, data_type: ss_plugin_state_type) -> *mut ss_plugin_table_field_t>
Trait Implementations§
Source§impl Clone for ss_plugin_table_fields_vtable
impl Clone for ss_plugin_table_fields_vtable
Source§fn clone(&self) -> ss_plugin_table_fields_vtable
fn clone(&self) -> ss_plugin_table_fields_vtable
Returns a copy 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 ss_plugin_table_fields_vtable
Auto Trait Implementations§
impl Freeze for ss_plugin_table_fields_vtable
impl RefUnwindSafe for ss_plugin_table_fields_vtable
impl Send for ss_plugin_table_fields_vtable
impl Sync for ss_plugin_table_fields_vtable
impl Unpin for ss_plugin_table_fields_vtable
impl UnwindSafe for ss_plugin_table_fields_vtable
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