[][src]Crate snake_case

Structs

InvalidSnakeCase

Only one possible error: the given string was not valid snake_case.

SnakeCase

A string that can only be valid snake_case. In other words, it always matches ^[_a-z][_a-z0-9]*$

Functions

is_snake_case

Is the given string a non-empty snake_case string? In particular, does it match ^[_a-z][_a-z0-9]*$ ?