pub struct ScenarioOutcome {
pub scenario_name: String,
pub verdict: ScenarioVerdict,
pub actual_output: String,
pub event_outputs: Vec<String>,
pub failures: Vec<String>,
}Fields§
§scenario_name: String§verdict: ScenarioVerdict§actual_output: String§event_outputs: Vec<String>§failures: Vec<String>Trait Implementations§
Source§impl Clone for ScenarioOutcome
impl Clone for ScenarioOutcome
Source§fn clone(&self) -> ScenarioOutcome
fn clone(&self) -> ScenarioOutcome
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 moreAuto Trait Implementations§
impl Freeze for ScenarioOutcome
impl RefUnwindSafe for ScenarioOutcome
impl Send for ScenarioOutcome
impl Sync for ScenarioOutcome
impl Unpin for ScenarioOutcome
impl UnsafeUnpin for ScenarioOutcome
impl UnwindSafe for ScenarioOutcome
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