pub struct LogStatus {
pub severity: LogSeverity,
pub filename: String,
pub line: u32,
pub message: String,
}
Expand description
Log status information from osquery.
Status logs contain structured information about osquery’s internal state, including error messages, warnings, and informational messages.
Fields§
§severity: LogSeverity
The severity level of the log message
filename: String
The source file that generated the log
line: u32
The line number in the source file
message: String
The log message text
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LogStatus
impl RefUnwindSafe for LogStatus
impl Send for LogStatus
impl Sync for LogStatus
impl Unpin for LogStatus
impl UnwindSafe for LogStatus
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