pub struct Analysis<'a, I: IntoIterator<Item = &'a Command> + Copy> { /* private fields */ }
Implementations§
Source§impl<'a, I: IntoIterator<Item = &'a Command> + Copy> Analysis<'a, I>
impl<'a, I: IntoIterator<Item = &'a Command> + Copy> Analysis<'a, I>
pub fn new(runner: Box<dyn Runner<'a, I>>, hostinfos: I, commands: I) -> Self
pub fn with_repetitions(self, repetitions: usize) -> Self
pub fn with_max_parallel_commands(self, max_parallel_commands: usize) -> Self
pub fn run(&self, context: Context) -> Result<AnalysisReport>
Trait Implementations§
Auto Trait Implementations§
impl<'a, I> Freeze for Analysis<'a, I>where
I: Freeze,
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§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more