pub struct LogParseResult {
pub entries: Vec<LogEntry>,
pub skipped: Vec<String>,
}Expand description
Result of parsing log output, including any skipped entries.
Fields§
§entries: Vec<LogEntry>§skipped: Vec<String>Lines that failed to parse.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LogParseResult
impl RefUnwindSafe for LogParseResult
impl Send for LogParseResult
impl Sync for LogParseResult
impl Unpin for LogParseResult
impl UnsafeUnpin for LogParseResult
impl UnwindSafe for LogParseResult
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