Skip to main content

Normalize

Trait Normalize 

Source
pub trait Normalize {
    // Required method
    fn normalize(self) -> Self;
}

Required Methods§

Source

fn normalize(self) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

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

Implementations on Foreign Types§

Source§

impl<R: Normalize> Normalize for Vec<R>

Source§

fn normalize(self) -> Self

Implementors§

Source§

impl<T: Ord> Normalize for Regex<T>