1 2 3 4 5 6 7 8 9
pub mod float; pub mod string; use rand::Rng; use serde_json::Value; pub trait Generate { fn generate(&self, rng: &mut impl Rng) -> Value; }