[][src]Struct cargo_fuzzcheck::project::Fuzz

pub struct Fuzz {
    pub non_instrumented: NonInstrumented,
    pub instrumented: Instrumented,
    pub corpora: Result<Corpora, CorporaError>,
    pub artifacts: Result<Artifacts, ArtifactsError>,
    pub gitignore: Option<String>,
}

Fields

non_instrumented: NonInstrumentedinstrumented: Instrumentedcorpora: Result<Corpora, CorporaError>artifacts: Result<Artifacts, ArtifactsError>gitignore: Option<String>

Implementations

impl Fuzz[src]

pub fn init(path: &Path, library: &str, fuzzcheck_path_or_version: &str) -> Self[src]

impl Fuzz[src]

pub fn from_path(fuzz_folder: &Path) -> Result<Self, FuzzError>[src]

impl Fuzz[src]

pub fn write(&self, path: &Path) -> Result<(), Error>[src]

Trait Implementations

impl Debug for Fuzz[src]

Auto Trait Implementations

impl !RefUnwindSafe for Fuzz

impl Send for Fuzz

impl Sync for Fuzz

impl Unpin for Fuzz

impl !UnwindSafe for Fuzz

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.