rustyphoenixmicrobenchmark 1.4.0

Toolset for function micro-benchmarking. Rust equivalent of C++ [PhoenixMicroBenchmark](https://gitlab.in2p3.fr/CTA-LAPP/PHOENIX_LIBS2/test-benchmark/PhoenixMicroBenchmark)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/***************************************
	Auteur : Pierre Aubert
	Mail : pierre.aubert@lapp.in2p3.fr
	Licence : CeCILL-C
****************************************/

pub use std::time::Instant;
pub use std::cmp::Ordering;

mod pellapsedtime;
mod macro_function_timer;
mod pfunctiontimer;

pub use crate::pellapsedtime::PEllapsedTime;
pub use crate::pfunctiontimer::PFunctionTimer;