pub struct ParsedLogEntry {
pub sequence_id: usize,
pub explicit_id: Option<i64>,
pub timestamp: DateTime<Utc>,
pub severity: Severity,
pub process_id: String,
pub message: String,
pub message_lowercased: String,
pub subsystem_id: Option<i16>,
pub labels: LogEntryLabels,
pub resolution_or_discussion_url_id: Option<i16>,
pub doc_url_id: Option<i16>,
}Fields§
§sequence_id: usize§explicit_id: Option<i64>§timestamp: DateTime<Utc>§severity: Severity§process_id: String§message: String§message_lowercased: String§subsystem_id: Option<i16>§labels: LogEntryLabels§resolution_or_discussion_url_id: Option<i16>§doc_url_id: Option<i16>Implementations§
Source§impl ParsedLogEntry
impl ParsedLogEntry
Sourcepub fn is_multiline(&self) -> bool
pub fn is_multiline(&self) -> bool
Check if this log entry spans multiple lines
Trait Implementations§
Source§impl Clone for ParsedLogEntry
impl Clone for ParsedLogEntry
Source§fn clone(&self) -> ParsedLogEntry
fn clone(&self) -> ParsedLogEntry
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 moreSource§impl Debug for ParsedLogEntry
impl Debug for ParsedLogEntry
Source§impl Hash for ParsedLogEntry
impl Hash for ParsedLogEntry
Source§impl PartialEq for ParsedLogEntry
impl PartialEq for ParsedLogEntry
impl Eq for ParsedLogEntry
impl StructuralPartialEq for ParsedLogEntry
Auto Trait Implementations§
impl Freeze for ParsedLogEntry
impl RefUnwindSafe for ParsedLogEntry
impl Send for ParsedLogEntry
impl Sync for ParsedLogEntry
impl Unpin for ParsedLogEntry
impl UnwindSafe for ParsedLogEntry
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