pub struct BenchmarkId { /* private fields */ }
Expand description
Simple structure representing an ID for a benchmark. The ID must be unique within a benchmark group.
Implementations§
Source§impl BenchmarkId
impl BenchmarkId
Sourcepub fn new<S, P>(function_name: S, parameter: P) -> BenchmarkId
pub fn new<S, P>(function_name: S, parameter: P) -> BenchmarkId
Construct a new benchmark ID from a string function name and a parameter value.
Note that the parameter value need not be the same as the parameter passed to your actual benchmark. For instance, you might have a benchmark that takes a 1MB string as input. It would be impractical to embed the whole string in the benchmark ID, so instead your parameter value might be a descriptive string like “1MB Alphanumeric”.
§Examples
// A basic benchmark ID is typically constructed from a constant string and a simple
// parameter
let basic_id = BenchmarkId::new("my_id", 5);
// The function name can be a string
let function_name = "test_string".to_string();
let string_id = BenchmarkId::new(function_name, 12);
// Benchmark IDs are passed to benchmark groups:
let mut criterion = Criterion::default();
let mut group = criterion.benchmark_group("My Group");
// Generate a very large input
let input : String = ::std::iter::repeat("X").take(1024 * 1024).collect();
// Note that we don't have to use the input as the parameter in the ID
group.bench_with_input(BenchmarkId::new("Test long string", "1MB X's"), &input, |b, i| {
b.iter(|| i.len())
});
Sourcepub fn from_parameter<P>(parameter: P) -> BenchmarkIdwhere
P: Display,
pub fn from_parameter<P>(parameter: P) -> BenchmarkIdwhere
P: Display,
Construct a new benchmark ID from just a parameter value. Use this when benchmarking a single function with a variety of different inputs.
Trait Implementations§
Source§impl Clone for BenchmarkId
impl Clone for BenchmarkId
Source§fn clone(&self) -> BenchmarkId
fn clone(&self) -> BenchmarkId
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Hash for BenchmarkId
impl Hash for BenchmarkId
Source§impl PartialEq for BenchmarkId
impl PartialEq for BenchmarkId
impl Eq for BenchmarkId
impl StructuralPartialEq for BenchmarkId
Auto Trait Implementations§
impl Freeze for BenchmarkId
impl RefUnwindSafe for BenchmarkId
impl Send for BenchmarkId
impl Sync for BenchmarkId
impl Unpin for BenchmarkId
impl UnwindSafe for BenchmarkId
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more