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

Required Methods§

source

fn from<E: Error>(pd: PercentDecode<'_>) -> Result<Self, E>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl FromPercentDecode for String

source§

fn from<E: Error>(pd: PercentDecode<'_>) -> Result<Self, E>

source§

impl FromPercentDecode for Vec<u8>

source§

fn from<E: Error>(pd: PercentDecode<'_>) -> Result<Self, E>

Implementors§