assay-sim 3.25.0

Simulation harness for Assay (internal, API unstable)
Documentation
1
2
3
4
5
6
7
8
9
pub mod bitflip;
pub mod inject;
pub mod truncate;

use anyhow::Result;

pub trait Mutator {
    fn mutate(&self, data: &[u8]) -> Result<Vec<u8>>;
}