[][src]Struct usereport::analysis::Analysis

pub struct Analysis<'a, I: IntoIterator<Item = &'a Command> + Copy> { /* fields omitted */ }

Methods

impl<'a, I: IntoIterator<Item = &'a Command> + Copy> Analysis<'a, I>[src]

pub fn new(runner: Box<dyn Runner<'a, I>>, hostinfos: I, commands: I) -> Self[src]

pub fn with_repetitions(self, repetitions: usize) -> Self[src]

pub fn with_max_parallel_commands(self, max_parallel_commands: usize) -> Self[src]

pub fn run(&self, context: Context) -> Result<AnalysisReport>[src]

Trait Implementations

impl<'a, I: Debug + IntoIterator<Item = &'a Command> + Copy> Debug for Analysis<'a, I>[src]

Auto Trait Implementations

impl<'a, I> !RefUnwindSafe for Analysis<'a, I>

impl<'a, I> !Send for Analysis<'a, I>

impl<'a, I> !Sync for Analysis<'a, I>

impl<'a, I> Unpin for Analysis<'a, I> where
    I: Unpin

impl<'a, I> !UnwindSafe for Analysis<'a, I>

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.