#[repr(C)]pub struct ss_plugin_table_input {
pub name: *const c_char,
pub key_type: ss_plugin_state_type,
pub table: *mut ss_plugin_table_t,
pub reader: ss_plugin_table_reader_vtable,
pub writer: ss_plugin_table_writer_vtable,
pub fields: ss_plugin_table_fields_vtable,
pub reader_ext: *mut ss_plugin_table_reader_vtable_ext,
pub writer_ext: *mut ss_plugin_table_writer_vtable_ext,
pub fields_ext: *mut ss_plugin_table_fields_vtable_ext,
}
Fields§
§name: *const c_char
§key_type: ss_plugin_state_type
§table: *mut ss_plugin_table_t
§reader: ss_plugin_table_reader_vtable
§writer: ss_plugin_table_writer_vtable
§fields: ss_plugin_table_fields_vtable
§reader_ext: *mut ss_plugin_table_reader_vtable_ext
§writer_ext: *mut ss_plugin_table_writer_vtable_ext
§fields_ext: *mut ss_plugin_table_fields_vtable_ext
Trait Implementations§
Source§impl Clone for ss_plugin_table_input
impl Clone for ss_plugin_table_input
Source§fn clone(&self) -> ss_plugin_table_input
fn clone(&self) -> ss_plugin_table_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_table_input
impl Debug for ss_plugin_table_input
impl Copy for ss_plugin_table_input
Auto Trait Implementations§
impl Freeze for ss_plugin_table_input
impl RefUnwindSafe for ss_plugin_table_input
impl !Send for ss_plugin_table_input
impl !Sync for ss_plugin_table_input
impl Unpin for ss_plugin_table_input
impl UnwindSafe for ss_plugin_table_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