pub struct LogEntry {
pub pid: u32,
pub tid: u32,
pub tag: u32,
pub sec: u32,
pub nsec: u32,
pub priority: u32,
pub header: Vec<u8>,
pub log: Vec<u8>,
}
Fields§
§pid: u32
§tid: u32
§tag: u32
§sec: u32
§nsec: u32
§priority: u32
§header: Vec<u8>
§log: Vec<u8>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LogEntry
impl RefUnwindSafe for LogEntry
impl Send for LogEntry
impl Sync for LogEntry
impl Unpin for LogEntry
impl UnwindSafe for LogEntry
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