pub struct FuzzFinding {
pub kind: FuzzFindingKind,
pub reproducer_path: String,
pub summary: String,
}Expand description
A single fuzz finding.
Fields§
§kind: FuzzFindingKindKind of finding.
reproducer_path: StringPath to the input that triggered the finding (a “reproducer”).
summary: StringShort human-readable summary.
Trait Implementations§
Source§impl Clone for FuzzFinding
impl Clone for FuzzFinding
Source§fn clone(&self) -> FuzzFinding
fn clone(&self) -> FuzzFinding
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 FuzzFinding
impl RefUnwindSafe for FuzzFinding
impl Send for FuzzFinding
impl Sync for FuzzFinding
impl Unpin for FuzzFinding
impl UnsafeUnpin for FuzzFinding
impl UnwindSafe for FuzzFinding
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