Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
src/ | 25-Apr-2025 | - | 168 | 122 | ||
.cargo-checksum.json | D | 25-Apr-2025 | 486 | 1 | 1 | |
Android.bp | D | 25-Apr-2025 | 1.1 KiB | 46 | 41 | |
CHANGELOG.md | D | 25-Apr-2025 | 102 | 2 | 2 | |
Cargo.toml | D | 25-Apr-2025 | 900 | 24 | 22 | |
LICENSE | D | 25-Apr-2025 | 1 KiB | 20 | 16 | |
METADATA | D | 25-Apr-2025 | 399 | 18 | 17 | |
MODULE_LICENSE_APACHE2 | D | 25-Apr-2025 | 0 | |||
README.md | D | 25-Apr-2025 | 522 | 15 | 11 | |
TEST_MAPPING | D | 25-Apr-2025 | 78 | 8 | 7 | |
cargo_embargo.json | D | 25-Apr-2025 | 42 | 5 | 4 |
README.md
1[](https://travis-ci.org/TedDriggs/ident_case) 2 3Crate for manipulating case of identifiers in Rust programs. 4 5# Features 6* Supports `snake_case`, `lowercase`, `camelCase`, 7 `PascalCase`, `SCREAMING_SNAKE_CASE`, and `kebab-case` 8* Rename variants, and fields 9 10# Examples 11```rust 12assert_eq!("helloWorld", RenameRule::CamelCase.apply_to_field("hello_world")); 13 14assert_eq!("i_love_serde", RenameRule::SnakeCase.apply_to_variant("ILoveSerde")); 15```