#[repr(C)]pub struct loadable_module_function_table {
pub api_version: c_int,
pub load: module_load,
pub shutdown: module_shutdown,
pub runtime: module_runtime,
pub flags: module_flag,
}
Fields§
§api_version: c_int
§load: module_load
§shutdown: module_shutdown
§runtime: module_runtime
§flags: module_flag
Trait Implementations§
Source§impl Clone for loadable_module_function_table
impl Clone for loadable_module_function_table
Source§fn clone(&self) -> loadable_module_function_table
fn clone(&self) -> loadable_module_function_table
Returns a duplicate 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 loadable_module_function_table
Auto Trait Implementations§
impl Freeze for loadable_module_function_table
impl RefUnwindSafe for loadable_module_function_table
impl Send for loadable_module_function_table
impl Sync for loadable_module_function_table
impl Unpin for loadable_module_function_table
impl UnwindSafe for loadable_module_function_table
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