pub trait Converter<I, F> {
    type Err;

    // Required method
    fn convert<N: Converting<I, F>>(n: N) -> Result<Number<I, F>, Self::Err>;
}

Required Associated Types§

Required Methods§

source

fn convert<N: Converting<I, F>>(n: N) -> Result<Number<I, F>, Self::Err>

Object Safety§

This trait is not object safe.

Implementors§