pub struct FuzzResult {
pub target: String,
pub version: String,
pub executions: u64,
pub findings: Vec<FuzzFinding>,
}Expand description
Result of a fuzz run.
Fields§
§target: StringFuzz target name.
version: StringCrate version at the time of the run.
executions: u64Total executions completed.
findings: Vec<FuzzFinding>Findings discovered.
Implementations§
Source§impl FuzzResult
impl FuzzResult
Sourcepub fn into_report(self) -> Report
pub fn into_report(self) -> Report
Convert this result into a dev-report::Report.
Trait Implementations§
Source§impl Clone for FuzzResult
impl Clone for FuzzResult
Source§fn clone(&self) -> FuzzResult
fn clone(&self) -> FuzzResult
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 FuzzResult
impl RefUnwindSafe for FuzzResult
impl Send for FuzzResult
impl Sync for FuzzResult
impl Unpin for FuzzResult
impl UnsafeUnpin for FuzzResult
impl UnwindSafe for FuzzResult
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