ArbitraryExt
is an extension of Arbitrary crate that provides a way
to derive Arbitrary
trait but set custom implementation for single fields.
```rust use arbitrary::{Arbitrary, Unstructured}; use arbitrary_ext::ArbitraryExt;
struct Point { #[arbitraryext(custom = arbitraryx)] x: i32,
#[arbitrary_ext(default)]
y: i32,
z: i32,
}
fn arbitraryx(u: &mut Unstructured) -> arbitrary::Result
fn main() { let mut u = Unstructured::new(&[0x54, 0xee, 0x85, 0x1c]); let point = Point::arbitrary(&mut u).unwrap(); println!("{point:?}"); } ```
Output:
Point { x: 84, y: 0, z: 1869294 }
There is an Arbitrary issue that requires exactly this, but was not yet approached in 2 years. This crate exists just as a workaround.