Struct glassbench::Bench[][src]

pub struct Bench {
    pub time: DateTime<Utc>,
    pub name: String,
    pub title: String,
    pub git_info: Option<GitInfo>,
    pub tag: Option<String>,
    pub tasks: Vec<TaskBench>,
}

A whole benchmark

You normally create it with the glassbench! macro which will manage table rendering, saving and graphing if required by arguments.

Fields

time: DateTime<Utc>name: Stringtitle: Stringgit_info: Option<GitInfo>tag: Option<String>tasks: Vec<TaskBench>

Implementations

impl Bench[src]

pub fn new<S1, S2>(name: S1, title: S2) -> Self where
    S1: Into<String>,
    S2: Into<String>, 
[src]

Create a benchmark with a specific name and title

You normally create don’t use this function but the glassbench! macro which will fetch the id in the name of the executed benchmark.

pub fn task<S: Into<String>, F>(&mut self, name: S, f: F) where
    F: FnMut(&mut TaskBench), 
[src]

Specify a task to benchmark

Example:

bench.task("answer 42", |task| {
    let computer = BigComputer::new();
    let question = 42;
    task.iter(|| {
        pretend_used(computer.answer(question));
    });
});

pub fn task_name_from_arg(&self, arg: &str) -> Option<&str>[src]

Warning: this API is considered unstable

pub fn task_history(
    &self,
    db: &mut Db,
    tbl_arg: &str
) -> Result<TaskHistory, GlassBenchError>
[src]

load the history of a task from DB

You don’t have to call this yourself if you use the glassbench! macro.

Trait Implementations

impl Clone for Bench[src]

impl Debug for Bench[src]

Auto Trait Implementations

impl RefUnwindSafe for Bench

impl Send for Bench

impl Sync for Bench

impl Unpin for Bench

impl UnwindSafe for Bench

Blanket Implementations

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

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

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

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,