#[repr(C)]pub struct MSLogEntry {
pub level: c_int,
pub function: [c_char; 30],
pub message: [c_char; 200],
pub next: *mut MSLogEntry,
}
Expand description
@brief Log registry entry. \sa ms_rlog() \sa ms_rlog_l()
Fields§
§level: c_int
!< Message level
function: [c_char; 30]
!< Function generating the message
message: [c_char; 200]
!< Log, warning or error message
next: *mut MSLogEntry
Trait Implementations§
Source§impl Clone for MSLogEntry
impl Clone for MSLogEntry
Source§fn clone(&self) -> MSLogEntry
fn clone(&self) -> MSLogEntry
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 MSLogEntry
impl Debug for MSLogEntry
impl Copy for MSLogEntry
Auto Trait Implementations§
impl Freeze for MSLogEntry
impl RefUnwindSafe for MSLogEntry
impl !Send for MSLogEntry
impl !Sync for MSLogEntry
impl Unpin for MSLogEntry
impl UnwindSafe for MSLogEntry
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