[][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_instant_event(
    &self,
    event_kind: StringId,
    event_id: StringId,
    thread_id: u32
)
[src]

Records an event with the given parameters. The event time is computed automatically.

pub fn start_recording_interval_event<'a>(
    &'a self,
    event_kind: StringId,
    event_id: StringId,
    thread_id: u32
) -> TimingGuard<'a, S>
[src]

Creates a "start" event and returns a TimingGuard that will create the corresponding "end" event when it is dropped.

Auto Trait Implementations

impl<S> Send for Profiler<S>

impl<S> Sync for Profiler<S>

impl<S> Unpin for Profiler<S>

impl<S> UnwindSafe for Profiler<S> where
    S: RefUnwindSafe

impl<S> RefUnwindSafe for Profiler<S> where
    S: RefUnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Error = !

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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