convert_string 0.2.0

A trait to convert Strings to safe non-keywords and/or convert a Strings case (snake_case, PascalCase, ...).
Documentation
  • Coverage
  • 85.71%
    6 out of 7 items documented6 out of 7 items with examples
  • Size
  • Source code size: 24.16 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 340.51 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Thomblin/convert_string
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Thomblin

convert_string

A trait for String-like types to check if a string is a reserved keyword, and convert it to a safe non-keyword if so. Offers some type conversions as well

Only strict and reserved keywords are checked against; weak keywords are not include

You can add this dependency with:

[dependencies]
convert_string = "0.2.0"

Example

use convert_string::ConvertString;;

assert_eq!("r_type", String::from("type").to_valid_key(&String::from("r")));
assert_eq!("foo", String::from("ns:foo").remove_namespace());
assert_eq!("YdTax", String::from("yd_tax").to_pascal_case());
assert_eq!("yd_tax", String::from("YdTax").to_snake_case());

Rust Editions

[dependencies]
convert_string = { version = "0.2.0" }

Future Rust editions may add new keywords, and this crate will be updated to reflect (Or you can create an issue on github if I don't.)

Credit

Huge parts of this library are taken from https://github.com/JoelCourtney/check_keyword

Source

License: Apache-2.0

https://github.com/Thomblin/convert_string