[][src]Struct perftool::PerfTool

pub struct PerfTool<IN, OUT> where
    IN: Send + 'static,
    OUT: Future + Send + 'static,
    OUT::Output: Send + 'static, 
{ /* fields omitted */ }

Implementations

impl<IN, OUT> PerfTool<IN, OUT> where
    IN: Send + 'static,
    OUT: Future + Send + 'static,
    OUT::Output: Send + 'static, 
[src]

pub fn new(
    wps: u64,
    ramp_up: Duration,
    test_duration: Duration,
    init_task: impl Fn() -> IN + 'static,
    task: impl Fn(IN) -> OUT + 'static
) -> PerfTool<IN, OUT>
[src]

pub async fn start(&self)[src]

Auto Trait Implementations

impl<IN, OUT> !RefUnwindSafe for PerfTool<IN, OUT>[src]

impl<IN, OUT> !Send for PerfTool<IN, OUT>[src]

impl<IN, OUT> !Sync for PerfTool<IN, OUT>[src]

impl<IN, OUT> Unpin for PerfTool<IN, OUT>[src]

impl<IN, OUT> !UnwindSafe for PerfTool<IN, OUT>[src]

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, U> Into<U> for T where
    U: From<T>, 
[src]

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>,