pub enum Event<'a> {
Function(u64, &'a str, &'a [u8]),
Samples(&'a [SamplePc]),
}Available on crate feature
profile only.Expand description
Sections that can be parsed from a *.data file.
This is the reverse of Recorder above.
Variants§
Function(u64, &'a str, &'a [u8])
A named function was loaded at the specified address with the specified contents.
Samples(&'a [SamplePc])
A set of samples were taken.