#[repr(C)]pub struct switch_api_interface_t {
pub interface_name: *const c_char,
pub desc: *const c_char,
pub function: switch_api_function_t,
pub syntax: *const c_char,
pub rwlock: *mut switch_thread_rwlock_t,
pub refs: c_int,
pub reflock: *mut switch_mutex_t,
pub parent: *mut switch_loadable_module_interface_t,
pub next: *mut switch_api_interface_t,
}Fields§
§interface_name: *const c_char§desc: *const c_char§function: switch_api_function_t§syntax: *const c_char§rwlock: *mut switch_thread_rwlock_t§refs: c_int§reflock: *mut switch_mutex_t§parent: *mut switch_loadable_module_interface_t§next: *mut switch_api_interface_tAuto Trait Implementations§
impl Freeze for switch_api_interface_t
impl RefUnwindSafe for switch_api_interface_t
impl !Send for switch_api_interface_t
impl !Sync for switch_api_interface_t
impl Unpin for switch_api_interface_t
impl UnsafeUnpin for switch_api_interface_t
impl UnwindSafe for switch_api_interface_t
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