#[repr(C)]pub struct ss_plugin_init_tables_input {
pub list_tables: Option<unsafe extern "C-unwind" fn(o: *mut ss_plugin_owner_t, ntables: *mut u32) -> *mut ss_plugin_table_info>,
pub get_table: Option<unsafe extern "C-unwind" fn(o: *mut ss_plugin_owner_t, name: *const c_char, key_type: ss_plugin_state_type) -> *mut ss_plugin_table_t>,
pub add_table: Option<unsafe extern "C-unwind" fn(o: *mut ss_plugin_owner_t, in_: *const ss_plugin_table_input) -> ss_plugin_rc>,
pub fields: ss_plugin_table_fields_vtable,
pub fields_ext: *mut ss_plugin_table_fields_vtable_ext,
pub reader_ext: *mut ss_plugin_table_reader_vtable_ext,
pub writer_ext: *mut ss_plugin_table_writer_vtable_ext,
}
Fields§
§list_tables: Option<unsafe extern "C-unwind" fn(o: *mut ss_plugin_owner_t, ntables: *mut u32) -> *mut ss_plugin_table_info>
§get_table: Option<unsafe extern "C-unwind" fn(o: *mut ss_plugin_owner_t, name: *const c_char, key_type: ss_plugin_state_type) -> *mut ss_plugin_table_t>
§add_table: Option<unsafe extern "C-unwind" fn(o: *mut ss_plugin_owner_t, in_: *const ss_plugin_table_input) -> ss_plugin_rc>
§fields: ss_plugin_table_fields_vtable
§fields_ext: *mut ss_plugin_table_fields_vtable_ext
§reader_ext: *mut ss_plugin_table_reader_vtable_ext
§writer_ext: *mut ss_plugin_table_writer_vtable_ext
Trait Implementations§
Source§impl Clone for ss_plugin_init_tables_input
impl Clone for ss_plugin_init_tables_input
Source§fn clone(&self) -> ss_plugin_init_tables_input
fn clone(&self) -> ss_plugin_init_tables_input
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 moreSource§impl Debug for ss_plugin_init_tables_input
impl Debug for ss_plugin_init_tables_input
impl Copy for ss_plugin_init_tables_input
Auto Trait Implementations§
impl Freeze for ss_plugin_init_tables_input
impl RefUnwindSafe for ss_plugin_init_tables_input
impl !Send for ss_plugin_init_tables_input
impl !Sync for ss_plugin_init_tables_input
impl Unpin for ss_plugin_init_tables_input
impl UnwindSafe for ss_plugin_init_tables_input
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