pub trait OSLogEntryWithPayload: OSLogEntryFromProcess {
// Provided methods
fn category(&self) -> String { ... }
fn format_string(&self) -> String { ... }
fn subsystem(&self) -> String { ... }
fn components(&self) -> Vec<OSLogMessageComponent> { ... }
}Expand description
Fields shared by entries conforming to OSLogEntryWithPayload.