1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
use describer::Describe; #[derive(Describe)] #[prettify(hide_name = true)] struct MyStruct { opt: Option<bool>, my_string: String, } fn main() { assert_eq!( MyStruct::describe(), "{ opt: bool, my_string: String! }" ); }