Macro include_sql::to_camel_case
source · [−]to_camel_case!() { /* proc-macro */ }
Expand description
Converts an ident
into a camel-case ident
using the followng rules:
- First character is capitalized
- Underscores are removed
- Character that used to follow the removed underscore is capitalized
- Other charactes are left unchanged