pub trait Slugify {
    // Required method
    fn slugify<'a>(&mut self, str: &'a str) -> Cow<'a, str>;
}
Expand description

A trait to specify the anchor calculation.

Required Methods§

source

fn slugify<'a>(&mut self, str: &'a str) -> Cow<'a, str>

Implementors§