pascal_ident_to_string 0.1.0

A macro to convert an identifier to a string literal in pascal case
Documentation
1
2
3
4
5
6
7
use pascal_ident_to_string::pascal_string;

#[test]
fn sanity() {
    let my_rusty_ident = pascal_string!(my_rusty_ident);
    assert_eq!(my_rusty_ident, "MyRustyIdent");
}