Struct fxprof_processed_profile::TextMarker
source · [−]pub struct TextMarker(pub String);
Expand description
An example marker type with some text content.
Tuple Fields
0: String
Trait Implementations
sourceimpl Clone for TextMarker
impl Clone for TextMarker
sourcefn clone(&self) -> TextMarker
fn clone(&self) -> TextMarker
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 TextMarker
impl Debug for TextMarker
sourceimpl ProfilerMarker for TextMarker
impl ProfilerMarker for TextMarker
sourceconst MARKER_TYPE_NAME: &'static str = "Text"
const MARKER_TYPE_NAME: &'static str = "Text"
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 TextMarker
impl Send for TextMarker
impl Sync for TextMarker
impl Unpin for TextMarker
impl UnwindSafe for TextMarker
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