pub trait Collection: Send + Sync + 'static {
    type Handle: CollectionHandle;

    fn with_capacity(capacity: usize) -> Self;
    fn pin(&self) -> Self::Handle;
}
Expand description

A collection that can be benchmarked by bustle.

Any thread that performs operations on the collection will first call pin and then perform collection operations on the Handle that is returned. pin will not be called in the hot loop of the benchmark.

Required Associated Types

A thread-local handle to the concurrent collection under test.

Required Methods

Allocate a new instance of the benchmark target with the given capacity.

Pin a thread-local handle to the concurrent collection under test.

Implementors