1 2 3 4 5 6 7 8 9
use mockiato::mockable; #[mockable(static_references)] trait Greeter: 'static { fn greet(&self, name: &str) -> String; } #[test] fn test() {}