# convert_string

github crates.io docs.rs build status

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:

toml [dependencies] convert_string = "0.1.2"

## Example

```rust use convert_string::ConvertString;;

asserteq!("rtype", String::from("type").tovalidkey(&String::from("r"))); asserteq!("foo", String::from("ns:foo").removenamespace()); asserteq!("YdTax", String::from("ydtax").topascalcase()); asserteq!("ydtax", String::from("YdTax").tosnakecase());

```

## Rust Editions

By default, the keywords added in Rust Edition 2018 are included in the list of chec This can be disabled with default-features = false in your Cargo.toml.

toml [dependencies] convert_string = { version = "0.1.2", default-features = false }

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

License: Apache-2.0

# Source

https://github.com/Thomblin/convert_string