pub trait ToNumberRepresentation: Sized {
    type Err;

    // Required method
    fn to_number_representation(self) -> Result<Vec<u8>, Self::Err>;
}

Required Associated Types§

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§