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: LogSeverityThe severity level of the log message
filename: StringThe source file that generated the log
line: u32The line number in the source file
message: StringThe 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