hb 0.0.13

HTTP Benchmark Tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[macro_use]
extern crate slog;
#[macro_use]
extern crate trackable;

pub use error::{Error, ErrorKind};

pub mod request;
pub mod run;
pub mod summary;
pub mod time_series;

mod error;

pub type Result<T> = ::std::result::Result<T, Error>;