pub struct SimulatedBlock<B = Block> {
pub inner: B,
pub calls: Vec<SimCallResult>,
}
Expand description
Represents the result of simulating a block.
Fields§
§inner: B
The simulated block.
calls: Vec<SimCallResult>
A vector of results for each call in the block.
Trait Implementations§
Source§impl<B: Clone> Clone for SimulatedBlock<B>
impl<B: Clone> Clone for SimulatedBlock<B>
Source§fn clone(&self) -> SimulatedBlock<B>
fn clone(&self) -> SimulatedBlock<B>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<B: Debug> Debug for SimulatedBlock<B>
impl<B: Debug> Debug for SimulatedBlock<B>
Source§impl<'de, B> Deserialize<'de> for SimulatedBlock<B>where
B: Deserialize<'de>,
impl<'de, B> Deserialize<'de> for SimulatedBlock<B>where
B: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<B> Freeze for SimulatedBlock<B>where
B: Freeze,
impl<B> RefUnwindSafe for SimulatedBlock<B>where
B: RefUnwindSafe,
impl<B> Send for SimulatedBlock<B>where
B: Send,
impl<B> Sync for SimulatedBlock<B>where
B: Sync,
impl<B> Unpin for SimulatedBlock<B>where
B: Unpin,
impl<B> UnwindSafe for SimulatedBlock<B>where
B: 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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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