pub struct LogAnalysis {
pub total_entries: u64,
pub entries_by_level: HashMap<LogLevel, u64>,
pub entries_by_module: HashMap<String, u64>,
pub error_patterns: HashMap<String, u64>,
}Fields§
§total_entries: u64§entries_by_level: HashMap<LogLevel, u64>§entries_by_module: HashMap<String, u64>§error_patterns: HashMap<String, u64>Trait Implementations§
Source§impl Debug for LogAnalysis
impl Debug for LogAnalysis
Source§impl Default for LogAnalysis
impl Default for LogAnalysis
Source§fn default() -> LogAnalysis
fn default() -> LogAnalysis
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LogAnalysis
impl RefUnwindSafe for LogAnalysis
impl Send for LogAnalysis
impl Sync for LogAnalysis
impl Unpin for LogAnalysis
impl UnwindSafe for LogAnalysis
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more