#[repr(C)]pub struct switch_caller_application {
pub application_name: *mut c_char,
pub application_data: *mut c_char,
pub application_function: switch_application_function_t,
pub next: *mut switch_caller_application,
}Expand description
\brief An Abstract Representation of a dialplan Application
Fields§
§application_name: *mut c_charThe name of the registered application to call
application_data: *mut c_charAn optional argument string to pass to the application
application_function: switch_application_function_tA function pointer to the application
next: *mut switch_caller_applicationTrait Implementations§
Source§impl Clone for switch_caller_application
impl Clone for switch_caller_application
Source§fn clone(&self) -> switch_caller_application
fn clone(&self) -> switch_caller_application
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 switch_caller_application
impl Debug for switch_caller_application
impl Copy for switch_caller_application
Auto Trait Implementations§
impl Freeze for switch_caller_application
impl RefUnwindSafe for switch_caller_application
impl !Send for switch_caller_application
impl !Sync for switch_caller_application
impl Unpin for switch_caller_application
impl UnwindSafe for switch_caller_application
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