#[repr(C)]pub struct ss_plugin_table_writer_vtable_ext {
pub clear_table: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t) -> ss_plugin_rc>,
pub erase_table_entry: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t, key: *const ss_plugin_state_data) -> ss_plugin_rc>,
pub create_table_entry: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t) -> *mut ss_plugin_table_entry_t>,
pub destroy_table_entry: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t, e: *mut ss_plugin_table_entry_t)>,
pub add_table_entry: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t, key: *const ss_plugin_state_data, entry: *mut ss_plugin_table_entry_t) -> *mut ss_plugin_table_entry_t>,
pub write_entry_field: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t, e: *mut ss_plugin_table_entry_t, f: *const ss_plugin_table_field_t, in_: *const ss_plugin_state_data) -> ss_plugin_rc>,
}
Fields§
§clear_table: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t) -> ss_plugin_rc>
§erase_table_entry: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t, key: *const ss_plugin_state_data) -> ss_plugin_rc>
§create_table_entry: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t) -> *mut ss_plugin_table_entry_t>
§destroy_table_entry: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t, e: *mut ss_plugin_table_entry_t)>
§add_table_entry: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t, key: *const ss_plugin_state_data, entry: *mut ss_plugin_table_entry_t) -> *mut ss_plugin_table_entry_t>
§write_entry_field: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t, e: *mut ss_plugin_table_entry_t, f: *const ss_plugin_table_field_t, in_: *const ss_plugin_state_data) -> ss_plugin_rc>
Trait Implementations§
Source§impl Clone for ss_plugin_table_writer_vtable_ext
impl Clone for ss_plugin_table_writer_vtable_ext
Source§fn clone(&self) -> ss_plugin_table_writer_vtable_ext
fn clone(&self) -> ss_plugin_table_writer_vtable_ext
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_writer_vtable_ext
Auto Trait Implementations§
impl Freeze for ss_plugin_table_writer_vtable_ext
impl RefUnwindSafe for ss_plugin_table_writer_vtable_ext
impl Send for ss_plugin_table_writer_vtable_ext
impl Sync for ss_plugin_table_writer_vtable_ext
impl Unpin for ss_plugin_table_writer_vtable_ext
impl UnwindSafe for ss_plugin_table_writer_vtable_ext
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