[][src]Struct measureme::Profiler

pub struct Profiler<S: SerializationSink> { /* fields omitted */ }

Methods

impl<S: SerializationSink> Profiler<S>[src]

pub fn new(path_stem: &Path) -> Result<Profiler<S>, Box<dyn Error>>[src]

pub fn alloc_string_with_reserved_id<STR: SerializableString + ?Sized>(
    &self,
    id: StringId,
    s: &STR
) -> StringId
[src]

pub fn alloc_string<STR: SerializableString + ?Sized>(
    &self,
    s: &STR
) -> StringId
[src]

pub fn record_event(
    &self,
    event_kind: StringId,
    event_id: StringId,
    thread_id: u64,
    timestamp_kind: TimestampKind
)
[src]

Auto Trait Implementations

impl<S> Send for Profiler<S> where
    S: Send + Sync

impl<S> Sync for Profiler<S> where
    S: Send + Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.