rust-stopwatch
This is a simple module used to time things in Rust.

Example
extern crate stopwatch;
use stopwatch::{Stopwatch};
let sw = Stopwatch::start_new();
println!("Thing took {}ms", sw.elapsed_ms());
Methods
fn new() -> Stopwatch
fn start_new() -> Stopwatch
fn start(&mut self)
fn stop(&mut self)
fn reset(&mut self)
fn restart(&mut self)
fn is_running(&self) -> bool
fn elapsed(&self) -> Duration
fn elapsed_ms(&self) -> i64