pub struct TimelineView {
pub entries: Vec<TimelineEntry>,
}Expand description
A timeline view built from profiling events.
Fields§
§entries: Vec<TimelineEntry>Entries in the timeline.
Implementations§
Source§impl TimelineView
impl TimelineView
Sourcepub fn by_category(&self, category: &str) -> Vec<&TimelineEntry>
pub fn by_category(&self, category: &str) -> Vec<&TimelineEntry>
Filter entries by category.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TimelineView
impl RefUnwindSafe for TimelineView
impl Send for TimelineView
impl Sync for TimelineView
impl Unpin for TimelineView
impl UnsafeUnpin for TimelineView
impl UnwindSafe for TimelineView
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