Struct bustle::Mix[][src]

pub struct Mix {
    pub read: u8,
    pub insert: u8,
    pub remove: u8,
    pub update: u8,
    pub upsert: u8,
}

A workload mix configration.

The sum of the fields must add to 100.

Fields

read: u8

The percentage of operations in the mix that are reads.

insert: u8

The percentage of operations in the mix that are inserts.

remove: u8

The percentage of operations in the mix that are removals.

update: u8

The percentage of operations in the mix that are updates.

upsert: u8

The percentage of operations in the mix that are update-or-inserts.

Implementations

impl Mix[src]

pub fn read_heavy() -> Self[src]

Constructs a very read-heavy workload (~95%), with limited concurrent modifications.

pub fn insert_heavy() -> Self[src]

Constructs a very insert-heavy workload (~80%), with some reads and updates.

pub fn update_heavy() -> Self[src]

Constructs a very update-heavy workload (~50%), with some other modifications and the rest reads.

pub fn uniform() -> Self[src]

Constructs a workload where all operations occur with equal probability.

Trait Implementations

impl Clone for Mix[src]

impl Copy for Mix[src]

impl Debug for Mix[src]

Auto Trait Implementations

impl RefUnwindSafe for Mix

impl Send for Mix

impl Sync for Mix

impl Unpin for Mix

impl UnwindSafe for Mix

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,