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.
Auto Trait Implementations§
impl<'a> Freeze for Event<'a>
impl<'a> RefUnwindSafe for Event<'a>
impl<'a> Send for Event<'a>
impl<'a> Sync for Event<'a>
impl<'a> Unpin for Event<'a>
impl<'a> UnwindSafe for Event<'a>
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