Trait bustle::Collection

source ·
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§

source

type Handle: CollectionHandle

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

Required Methods§

source

fn with_capacity(capacity: usize) -> Self

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

source

fn pin(&self) -> Self::Handle

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

Implementors§