pub trait GenError: Clone + Default + Send {
    fn gen_error(&mut self, g: &mut Gen) -> Option<ErrorKind>;
}
Available on crate feature quickcheck1 only.
Expand description

Represents a way to generate io::ErrorKind instances.

See the module level documentation for more.

Required Methods

Optionally generate an io::ErrorKind instance.

Implementors