[][src]Struct believer::simulation::Simulator

pub struct Simulator<'a, D> where
    D: Decoder
{ /* fields omitted */ }

Methods

impl<'a, D> Simulator<'a, D> where
    D: Decoder
[src]

pub fn new(decoder: &'a D) -> Self[src]

pub fn simulate_n_iterations(&self, n_iterations: usize) -> SimulationResult[src]

pub fn simulate_until_failures_are_found(
    &self,
    n_threads: usize,
    n_failures_per_thread: usize
) -> SimulationResult
[src]

Auto Trait Implementations

impl<'a, D> Unpin for Simulator<'a, D>

impl<'a, D> Sync for Simulator<'a, D>

impl<'a, D> Send for Simulator<'a, D>

impl<'a, D> UnwindSafe for Simulator<'a, D> where
    D: RefUnwindSafe

impl<'a, D> RefUnwindSafe for Simulator<'a, D> where
    D: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for 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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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