Crate fuzzcheck_serializer[][src]

This crate contains types implementing the Serializer trait of fuzzcheck. There are currently two implementations:

  • SerdeSerializer uses the serde and serde_json crate to serialize the test inputs (of arbitrary Serializable type) to a .json file. It is available under the “serde” feature

  • ByteSerializer encodes and decodes values of type Vec<u8> by simply copy/pasting the bytes from/to the files. The extension is customizable.

Structs

ByteSerializer

A Serializer for Vec that simply copies the bytes from/to the files.