pub enum MarkerLocation {
MarkerChart,
MarkerTable,
TimelineOverview,
TimelineMemory,
TimelineIPC,
TimelineFileIO,
StackChart,
}
Variants
MarkerChart
MarkerTable
TimelineOverview
This adds markers to the main marker timeline in the header.
TimelineMemory
In the timeline, this is a section that breaks out markers that are related to memory. When memory counters are enabled, this is its own track, otherwise it is displayed with the main thread.
TimelineIPC
This adds markers to the IPC timeline area in the header.
TimelineFileIO
This adds markers to the FileIO timeline area in the header.
StackChart
TODO - This is not supported yet.
Trait Implementations
sourceimpl Clone for MarkerLocation
impl Clone for MarkerLocation
sourcefn clone(&self) -> MarkerLocation
fn clone(&self) -> MarkerLocation
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for MarkerLocation
impl Debug for MarkerLocation
sourceimpl Serialize for MarkerLocation
impl Serialize for MarkerLocation
Auto Trait Implementations
impl RefUnwindSafe for MarkerLocation
impl Send for MarkerLocation
impl Sync for MarkerLocation
impl Unpin for MarkerLocation
impl UnwindSafe for MarkerLocation
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more