pub struct Generator {
pub name: &'static str,
pub category: &'static str,
pub description: &'static str,
}Expand description
One entry in the fuzz-generator catalog.
Fields§
§name: &'static strCanonical name, used both in .klr (mutate f { <name> }) and on the CLI.
category: &'static strThe class of weakness this generator probes.
description: &'static strA one-line description of what the values look like or target.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Generator
impl RefUnwindSafe for Generator
impl Send for Generator
impl Sync for Generator
impl Unpin for Generator
impl UnsafeUnpin for Generator
impl UnwindSafe for Generator
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