1
2
3
4
5
6
7
8
#![no_std]

/// Canonicalizes values
pub trait Canonicalize: Sized
{
    /// Performs the canonicalizing
    fn canon<E>(self) -> Result<Self, E>;
}