#[repr(C)]pub struct cec_log_message {
pub message: *const c_char,
pub level: cec_log_level,
pub time: i64,
}Fields§
§message: *const c_char< the actual message, valid until returning from the log callback
level: cec_log_level< log level of the message
time: i64< the timestamp of this message
Trait Implementations§
Source§impl Clone for cec_log_message
impl Clone for cec_log_message
Source§fn clone(&self) -> cec_log_message
fn clone(&self) -> cec_log_message
Returns a copy 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 cec_log_message
impl Debug for cec_log_message
Source§impl Default for cec_log_message
impl Default for cec_log_message
impl Copy for cec_log_message
Auto Trait Implementations§
impl Freeze for cec_log_message
impl RefUnwindSafe for cec_log_message
impl !Send for cec_log_message
impl !Sync for cec_log_message
impl Unpin for cec_log_message
impl UnwindSafe for cec_log_message
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