#[repr(C)]pub struct switch_event_header {
pub name: *mut c_char,
pub value: *mut c_char,
pub array: *mut *mut c_char,
pub idx: c_int,
pub hash: c_ulong,
pub next: *mut switch_event_header,
}Expand description
\brief An event Header
Fields§
§name: *mut c_charthe header name
value: *mut c_charthe header value
array: *mut *mut c_chararray space
idx: c_intarray index
hash: c_ulonghash of the header name
next: *mut switch_event_headerTrait Implementations§
Source§impl Clone for switch_event_header
impl Clone for switch_event_header
Source§fn clone(&self) -> switch_event_header
fn clone(&self) -> switch_event_header
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_event_header
impl Debug for switch_event_header
impl Copy for switch_event_header
Auto Trait Implementations§
impl Freeze for switch_event_header
impl RefUnwindSafe for switch_event_header
impl !Send for switch_event_header
impl !Sync for switch_event_header
impl Unpin for switch_event_header
impl UnwindSafe for switch_event_header
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