#[repr(C)]pub struct libvlc_log_message_t {
pub i_severity: c_int,
pub psz_type: *const c_char,
pub psz_name: *const c_char,
pub psz_header: *const c_char,
pub psz_message: *const c_char,
}
Fields§
§i_severity: c_int
§psz_type: *const c_char
§psz_name: *const c_char
§psz_header: *const c_char
§psz_message: *const c_char
Trait Implementations§
Source§impl Clone for libvlc_log_message_t
impl Clone for libvlc_log_message_t
Source§fn clone(&self) -> libvlc_log_message_t
fn clone(&self) -> libvlc_log_message_t
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 moreimpl Copy for libvlc_log_message_t
Auto Trait Implementations§
impl Freeze for libvlc_log_message_t
impl RefUnwindSafe for libvlc_log_message_t
impl !Send for libvlc_log_message_t
impl !Sync for libvlc_log_message_t
impl Unpin for libvlc_log_message_t
impl UnwindSafe for libvlc_log_message_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