touched 0.1.0

Utility for writing fuzzing harnesses of callback-style and trait-style Rust crates
Documentation
1
2
3
4
5
6
7
8
9
use crate::Touchable;
use impl_trait_for_tuples::impl_for_tuples;

#[impl_for_tuples(16)]
impl Touchable for Tuple {
    fn touch(&self) {
        for_tuples!( #( crate::touching::<Tuple>(&self.Tuple); )* );
    }
}