[][src]Struct stratus::Instrumentor

pub struct Instrumentor { /* fields omitted */ }

The instrumentor is the overarching class that handles the creation of the json file that is fed into chrome://tracing (https://www.chromium.org/developers/how-tos/trace-event-profiling-tool) this is used as a singleton and you almost certainly don't want to make an instance of it.

Methods

impl Instrumentor[src]

pub fn init_instrumentor()[src]

initializes the instrumentor

pub fn start_session(name: &str)[src]

start an intrumentation session. name will be the name of the json file.

pub fn push_profile(data: Profile)[src]

pushes a profile to the time data, this will be reflected in the resulting json

pub fn end_session()[src]

this ends a session and writes the json file to the disk.

Auto Trait Implementations

Blanket Implementations

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

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

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]