#[repr(C)]pub struct ss_plugin_table_reader_vtable {
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>,
}
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>
Trait Implementations§
Source§impl Clone for ss_plugin_table_reader_vtable
impl Clone for ss_plugin_table_reader_vtable
Source§fn clone(&self) -> ss_plugin_table_reader_vtable
fn clone(&self) -> ss_plugin_table_reader_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_reader_vtable
Auto Trait Implementations§
impl Freeze for ss_plugin_table_reader_vtable
impl RefUnwindSafe for ss_plugin_table_reader_vtable
impl Send for ss_plugin_table_reader_vtable
impl Sync for ss_plugin_table_reader_vtable
impl Unpin for ss_plugin_table_reader_vtable
impl UnwindSafe for ss_plugin_table_reader_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