[][src]Struct caminos_lib::experiments::Experiment

pub struct Experiment<'a> { /* fields omitted */ }

An Experiment object encapsulates the operations that are performed over a folder containing an experiment.

Implementations

impl<'a> Experiment<'a>[src]

pub fn new(
    binary: &Path,
    root: &Path,
    plugs: &'a Plugs,
    options: ExperimentOptions
) -> Experiment<'a>
[src]

Creates a new experiment object.

pub fn execute_action(&mut self, action: Action)[src]

Executes an action over the experiment.

Auto Trait Implementations

impl<'a> !RefUnwindSafe for Experiment<'a>

impl<'a> Send for Experiment<'a>

impl<'a> Sync for Experiment<'a>

impl<'a> Unpin for Experiment<'a>

impl<'a> !UnwindSafe for Experiment<'a>

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.