pub trait OSLogEntryCommon {
// Required method
fn raw_entry_ptr(&self) -> *mut c_void;
// Provided methods
fn composed_message(&self) -> String { ... }
fn date(&self) -> SystemTime { ... }
fn store_category(&self) -> OSLogStoreCategory { ... }
}Expand description
Common fields exposed by every OSLogEntry snapshot.