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
10
11
macro_rules! impl_for_primitives {
    ($ty:ty) => {
        impl $crate::Touchable for $ty {
            fn touch(&self) {
                let _ = core::hint::black_box::<$ty>(*self);
            }
        }
    };
}

pub(crate) use impl_for_primitives;