pub trait FromPercentDecode: Sized {
    fn from<E: Error>(pd: PercentDecode<'_>) -> Result<Self, E>;
}

Required methods

Implementations on Foreign Types

Implementors