#[repr(C)]pub struct api_interface {
pub interface_name: *const c_char,
pub desc: *const c_char,
pub function: api_function,
pub syntax: *const c_char,
pub rwlock: *mut thread_rwlock,
pub refs: c_int,
pub reflock: *mut mutex,
pub parent: *mut loadable_module_interface,
pub next: *mut api_interface,
}Fields§
§interface_name: *const c_char§desc: *const c_char§function: api_function§syntax: *const c_char§rwlock: *mut thread_rwlock§refs: c_int§reflock: *mut mutex§parent: *mut loadable_module_interface§next: *mut api_interfaceTrait Implementations§
Source§impl Clone for api_interface
impl Clone for api_interface
Source§fn clone(&self) -> api_interface
fn clone(&self) -> api_interface
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 moreSource§impl Debug for api_interface
impl Debug for api_interface
Source§impl Default for api_interface
impl Default for api_interface
impl Copy for api_interface
Auto Trait Implementations§
impl Freeze for api_interface
impl RefUnwindSafe for api_interface
impl !Send for api_interface
impl !Sync for api_interface
impl Unpin for api_interface
impl UnwindSafe for api_interface
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