pub trait Humanize {
    type Output: Canonize;

    fn humanize(self, api: &impl Api) -> StdResult<Self::Output>;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors