pub struct SimulationOutput {
pub logs: Vec<String>,
pub success: bool,
}Expand description
The raw result of executing a scenario.
Fields§
§logs: Vec<String>Program logs, one entry per line.
success: boolWhether the transaction succeeded.
Implementations§
Trait Implementations§
Source§impl Clone for SimulationOutput
impl Clone for SimulationOutput
Source§fn clone(&self) -> SimulationOutput
fn clone(&self) -> SimulationOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SimulationOutput
impl Debug for SimulationOutput
impl Eq for SimulationOutput
Source§impl PartialEq for SimulationOutput
impl PartialEq for SimulationOutput
Source§fn eq(&self, other: &SimulationOutput) -> bool
fn eq(&self, other: &SimulationOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SimulationOutput
Auto Trait Implementations§
impl Freeze for SimulationOutput
impl RefUnwindSafe for SimulationOutput
impl Send for SimulationOutput
impl Sync for SimulationOutput
impl Unpin for SimulationOutput
impl UnsafeUnpin for SimulationOutput
impl UnwindSafe for SimulationOutput
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