#[repr(C)]pub struct switch_log_node_t {Show 13 fields
pub data: *mut c_char,
pub file: [c_char; 80],
pub line: u32,
pub func: [c_char; 80],
pub level: switch_log_level_t,
pub timestamp: switch_time_t,
pub content: *mut c_char,
pub userdata: *mut c_char,
pub channel: switch_text_channel_t,
pub slevel: switch_log_level_t,
pub tags: *mut switch_event_t,
pub sequence: i64,
pub meta: *mut cJSON,
}Fields§
§data: *mut c_char§file: [c_char; 80]§line: u32§func: [c_char; 80]§level: switch_log_level_t§timestamp: switch_time_t§content: *mut c_char§userdata: *mut c_char§channel: switch_text_channel_t§slevel: switch_log_level_t§sequence: i64§meta: *mut cJSONTrait Implementations§
Source§impl Clone for switch_log_node_t
impl Clone for switch_log_node_t
Source§fn clone(&self) -> switch_log_node_t
fn clone(&self) -> switch_log_node_t
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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_log_node_t
impl Debug for switch_log_node_t
Source§impl Default for switch_log_node_t
impl Default for switch_log_node_t
impl Copy for switch_log_node_t
Auto Trait Implementations§
impl Freeze for switch_log_node_t
impl RefUnwindSafe for switch_log_node_t
impl !Send for switch_log_node_t
impl !Sync for switch_log_node_t
impl Unpin for switch_log_node_t
impl UnsafeUnpin for switch_log_node_t
impl UnwindSafe for switch_log_node_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