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§
Object Safety§
This trait is not object safe.
pub trait Converter<I, F> {
type Err;
// Required method
fn convert<N: Converting<I, F>>(n: N) -> Result<Number<I, F>, Self::Err>;
}