#[repr(C)]pub struct ss_plugin_table_reader_vtable_ext {
pub get_table_name: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t) -> *const c_char>,
pub get_table_size: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t) -> u64>,
pub get_table_entry: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t, key: *const ss_plugin_state_data) -> *mut ss_plugin_table_entry_t>,
pub read_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, out: *mut ss_plugin_state_data) -> ss_plugin_rc>,
pub release_table_entry: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t, e: *mut ss_plugin_table_entry_t)>,
pub iterate_entries: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t, it: ss_plugin_table_iterator_func_t, s: *mut ss_plugin_table_iterator_state_t) -> ss_plugin_bool>,
}
Fields§
§get_table_name: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t) -> *const c_char>
§get_table_size: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t) -> u64>
§get_table_entry: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t, key: *const ss_plugin_state_data) -> *mut ss_plugin_table_entry_t>
§read_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, out: *mut ss_plugin_state_data) -> ss_plugin_rc>
§release_table_entry: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t, e: *mut ss_plugin_table_entry_t)>
§iterate_entries: Option<unsafe extern "C-unwind" fn(t: *mut ss_plugin_table_t, it: ss_plugin_table_iterator_func_t, s: *mut ss_plugin_table_iterator_state_t) -> ss_plugin_bool>
Trait Implementations§
Source§impl Clone for ss_plugin_table_reader_vtable_ext
impl Clone for ss_plugin_table_reader_vtable_ext
Source§fn clone(&self) -> ss_plugin_table_reader_vtable_ext
fn clone(&self) -> ss_plugin_table_reader_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_reader_vtable_ext
Auto Trait Implementations§
impl Freeze for ss_plugin_table_reader_vtable_ext
impl RefUnwindSafe for ss_plugin_table_reader_vtable_ext
impl Send for ss_plugin_table_reader_vtable_ext
impl Sync for ss_plugin_table_reader_vtable_ext
impl Unpin for ss_plugin_table_reader_vtable_ext
impl UnwindSafe for ss_plugin_table_reader_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