Skip to main content

switch_loadable_module_interface_t

Struct switch_loadable_module_interface_t 

Source
#[repr(C)]
pub struct switch_loadable_module_interface_t {
Show 21 fields pub module_name: *const c_char, pub endpoint_interface: *mut c_void, pub timer_interface: *mut c_void, pub dialplan_interface: *mut c_void, pub codec_interface: *mut c_void, pub application_interface: *mut c_void, pub chat_application_interface: *mut c_void, pub api_interface: *mut switch_api_interface_t, pub json_api_interface: *mut c_void, pub file_interface: *mut c_void, pub speech_interface: *mut c_void, pub directory_interface: *mut c_void, pub chat_interface: *mut c_void, pub say_interface: *mut c_void, pub asr_interface: *mut c_void, pub management_interface: *mut c_void, pub limit_interface: *mut c_void, pub database_interface: *mut c_void, pub rwlock: *mut switch_thread_rwlock_t, pub refs: c_int, pub pool: *mut switch_memory_pool_t,
}

Fields§

§module_name: *const c_char§endpoint_interface: *mut c_void§timer_interface: *mut c_void§dialplan_interface: *mut c_void§codec_interface: *mut c_void§application_interface: *mut c_void§chat_application_interface: *mut c_void§api_interface: *mut switch_api_interface_t§json_api_interface: *mut c_void§file_interface: *mut c_void§speech_interface: *mut c_void§directory_interface: *mut c_void§chat_interface: *mut c_void§say_interface: *mut c_void§asr_interface: *mut c_void§management_interface: *mut c_void§limit_interface: *mut c_void§database_interface: *mut c_void§rwlock: *mut switch_thread_rwlock_t§refs: c_int§pool: *mut switch_memory_pool_t

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.