pub trait ToSanitizedSnakeCase {
    fn to_sanitized_not_keyword_snake_case(&self) -> Cow<'_, str>;

    fn to_sanitized_snake_case(&self) -> Cow<'_, str> { ... }
}

Required methods

Provided methods

Implementations on Foreign Types

Implementors