pub struct RingLogEntry {
pub level: RingLogLevel,
pub message: String,
pub seq: u64,
}Expand description
A single log entry.
Fields§
§level: RingLogLevel§message: String§seq: u64Trait Implementations§
Source§impl Clone for RingLogEntry
impl Clone for RingLogEntry
Source§fn clone(&self) -> RingLogEntry
fn clone(&self) -> RingLogEntry
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 moreAuto Trait Implementations§
impl Freeze for RingLogEntry
impl RefUnwindSafe for RingLogEntry
impl Send for RingLogEntry
impl Sync for RingLogEntry
impl Unpin for RingLogEntry
impl UnsafeUnpin for RingLogEntry
impl UnwindSafe for RingLogEntry
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