Naming Conventions

crates.io MSRV Documentation LICENSE codecov Build Status dependency status downloads

Simple and Fast naming convention library.

Quick Start Guide

```rust use namingconventions::{getconvention, CaseName};

fn main() { let snakecase = getconvention(CaseName::SnakeCase);

let string = "camelCase";

println!("string to snakecase: {}", snakecase.to(string).unwrap()); println!("string is snakecase: {}", snakecase.is(string).unwrap()); } ```

License

MIT