pub trait Normalize {
    fn normalize(self) -> Self;
}

Required Methods

Normalizing in the context of Taplo the following:

  • replaces \ with / on windows
  • decodes all percent-encoded characters

Implementations on Foreign Types

Implementors