Struct fxprof_processed_profile::TracingMarker
source · [−]pub struct TracingMarker();
Expand description
The simplest possible example marker type. It contains no information beyond the name string that’s passed to ThreadBuilder::add_marker.
Trait Implementations
sourceimpl Clone for TracingMarker
impl Clone for TracingMarker
sourcefn clone(&self) -> TracingMarker
fn clone(&self) -> TracingMarker
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 TracingMarker
impl Debug for TracingMarker
sourceimpl ProfilerMarker for TracingMarker
impl ProfilerMarker for TracingMarker
sourceconst MARKER_TYPE_NAME: &'static str = "tracing"
const MARKER_TYPE_NAME: &'static str = "tracing"
The name of the marker type.
sourcefn json_marker_data(&self) -> Value
fn json_marker_data(&self) -> Value
A method that streams the marker payload data as a serde_json object.
sourcefn schema() -> MarkerSchema
fn schema() -> MarkerSchema
A static method that returns a MarkerSchema
, which contains all the
information needed to stream the display schema associated with a
marker type. Read more
Auto Trait Implementations
impl RefUnwindSafe for TracingMarker
impl Send for TracingMarker
impl Sync for TracingMarker
impl Unpin for TracingMarker
impl UnwindSafe for TracingMarker
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