pub trait SnekCase: ToOwned {
    fn to_snek_case(&self) -> Self::Owned;
}
Expand description

Oh heck, SnekCase is an alias for SnakeCase. See SnakeCase for more documentation.

Required Methods

Convert this type to snek case.

Implementors