pub struct Simulator<O: Oracle<T>, T: TimeType> { /* private fields */ }Expand description
A simulator used to simulate random runs.
Implementations§
Auto Trait Implementations§
impl<O, T> Freeze for Simulator<O, T>where
O: Freeze,
impl<O, T> RefUnwindSafe for Simulator<O, T>where
O: RefUnwindSafe,
T: RefUnwindSafe,
impl<O, T> Send for Simulator<O, T>
impl<O, T> Sync for Simulator<O, T>
impl<O, T> Unpin for Simulator<O, T>
impl<O, T> UnwindSafe for Simulator<O, T>where
O: UnwindSafe,
T: UnwindSafe,
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more