pub trait OSLogEntryFromProcess: OSLogEntryCommon {
// Provided methods
fn activity_identifier(&self) -> u64 { ... }
fn process(&self) -> String { ... }
fn process_identifier(&self) -> i32 { ... }
fn sender(&self) -> String { ... }
fn thread_identifier(&self) -> u64 { ... }
}Expand description
Fields shared by entries conforming to OSLogEntryFromProcess.