pub enum FuzzOutcome {
DryRun(Vec<String>),
Completed(FuzzReport),
}Expand description
Returned when a plan runs without errors. Distinct from FuzzReport
only because dry-run mode does not produce a report.
Variants§
DryRun(Vec<String>)
Tools that would be fuzzed; produced by FuzzPlan::dry_run.
Completed(FuzzReport)
Real fuzz results; produced by FuzzPlan::execute.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FuzzOutcome
impl RefUnwindSafe for FuzzOutcome
impl Send for FuzzOutcome
impl Sync for FuzzOutcome
impl Unpin for FuzzOutcome
impl UnsafeUnpin for FuzzOutcome
impl UnwindSafe for FuzzOutcome
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