Trait heck::ToKebabCase
source · pub trait ToKebabCase: ToOwned {
// Required method
fn to_kebab_case(&self) -> Self::Owned;
}
Expand description
This trait defines a kebab case conversion.
In kebab-case, word boundaries are indicated by hyphens.
Example:
use heck::ToKebabCase;
let sentence = "We are going to inherit the earth.";
assert_eq!(sentence.to_kebab_case(), "we-are-going-to-inherit-the-earth");
Required Methods§
sourcefn to_kebab_case(&self) -> Self::Owned
fn to_kebab_case(&self) -> Self::Owned
Convert this type to kebab case.