Skip to main content

Slugify

Trait Slugify 

Source
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>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§