pub struct AggLogEntry {
pub level: AggLogLevel,
pub message: String,
pub source: String,
}Expand description
An aggregated log entry.
Fields§
§level: AggLogLevel§message: String§source: StringTrait Implementations§
Source§impl Clone for AggLogEntry
impl Clone for AggLogEntry
Source§fn clone(&self) -> AggLogEntry
fn clone(&self) -> AggLogEntry
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 AggLogEntry
impl RefUnwindSafe for AggLogEntry
impl Send for AggLogEntry
impl Sync for AggLogEntry
impl Unpin for AggLogEntry
impl UnsafeUnpin for AggLogEntry
impl UnwindSafe for AggLogEntry
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