pub struct LabScenarioRun<T> {
pub result: LabScenarioResult,
pub output: T,
}Expand description
Output plus run metadata for a deterministic lab scenario.
Fields§
§result: LabScenarioResultScenario execution metadata.
output: TScenario return value.
Trait Implementations§
Source§impl<T: Clone> Clone for LabScenarioRun<T>
impl<T: Clone> Clone for LabScenarioRun<T>
Source§fn clone(&self) -> LabScenarioRun<T>
fn clone(&self) -> LabScenarioRun<T>
Returns a duplicate 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<T: Debug> Debug for LabScenarioRun<T>
impl<T: Debug> Debug for LabScenarioRun<T>
Source§impl<T: PartialEq> PartialEq for LabScenarioRun<T>
impl<T: PartialEq> PartialEq for LabScenarioRun<T>
impl<T: Eq> Eq for LabScenarioRun<T>
impl<T> StructuralPartialEq for LabScenarioRun<T>
Auto Trait Implementations§
impl<T> Freeze for LabScenarioRun<T>where
T: Freeze,
impl<T> RefUnwindSafe for LabScenarioRun<T>where
T: RefUnwindSafe,
impl<T> Send for LabScenarioRun<T>where
T: Send,
impl<T> Sync for LabScenarioRun<T>where
T: Sync,
impl<T> Unpin for LabScenarioRun<T>where
T: Unpin,
impl<T> UnsafeUnpin for LabScenarioRun<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for LabScenarioRun<T>where
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