describer 0.3.1

Struct describing helper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![allow(dead_code)]
use describer::{Describe, Describer};

#[derive(Describe)]
struct MyStruct {
    opt: Option<bool>,
    my_string: String,
}

fn main() {
    assert_eq!(
        MyStruct::describe(),
        "MyStruct { opt: bool?, my_string: String }"
    );
}