[][src]Struct stratus::Profile

pub struct Profile { /* fields omitted */ }

A Profile is profiling data for a given bit of time recorded to the instrumentor.

Methods

impl Profile[src]

pub fn new(category: String, name: String) -> Profile[src]

creates a new profile, you probably want to use #[profiled] on a given function. Otherwise category and name are values shown in the tracer.

pub fn stop(&mut self)[src]

"stops" the profile recording, this actually just records the end time.

pub fn to_json(&self, profiler_start: SystemTime) -> String[src]

converts the given profile into json.

Trait Implementations

impl Drop for Profile[src]

impl Clone for Profile[src]

Auto Trait Implementations

impl Send for Profile

impl Sync for Profile

impl Unpin for Profile

impl UnwindSafe for Profile

impl RefUnwindSafe for Profile

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

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]