pub trait Canonize {
    type Output: Humanize;

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

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors