describer 0.2.2

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