pub struct CampaignResult {
pub step_results: Vec<(String, RunOutput)>,
}Expand description
Collected results from a campaign run.
Fields§
§step_results: Vec<(String, RunOutput)>Ordered pairs of (step name, output).
Implementations§
Auto Trait Implementations§
impl Freeze for CampaignResult
impl RefUnwindSafe for CampaignResult
impl Send for CampaignResult
impl Sync for CampaignResult
impl Unpin for CampaignResult
impl UnsafeUnpin for CampaignResult
impl UnwindSafe for CampaignResult
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