#[repr(C)]pub struct switch_caller_extension {
pub extension_name: *mut c_char,
pub extension_number: *mut c_char,
pub current_application: *mut switch_caller_application_t,
pub last_application: *mut switch_caller_application_t,
pub applications: *mut switch_caller_application_t,
pub children: *mut switch_caller_profile,
pub next: *mut switch_caller_extension,
}Expand description
\brief An Abstract Representation of a dialplan extension
Fields§
§extension_name: *mut c_charThe name of the extension
extension_number: *mut c_charThe number of the extension
current_application: *mut switch_caller_application_tPointer to the current application for this extension
last_application: *mut switch_caller_application_tPointer to the last application for this extension
applications: *mut switch_caller_application_tPointer to the entire stack of applications for this extension
children: *mut switch_caller_profile§next: *mut switch_caller_extensionTrait Implementations§
Source§impl Clone for switch_caller_extension
impl Clone for switch_caller_extension
Source§fn clone(&self) -> switch_caller_extension
fn clone(&self) -> switch_caller_extension
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_extension
impl Debug for switch_caller_extension
impl Copy for switch_caller_extension
Auto Trait Implementations§
impl Freeze for switch_caller_extension
impl RefUnwindSafe for switch_caller_extension
impl !Send for switch_caller_extension
impl !Sync for switch_caller_extension
impl Unpin for switch_caller_extension
impl UnwindSafe for switch_caller_extension
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