pub trait Reciprocable: MiniUnsignedInteger {
type DoublePrecision: MiniUnsignedInteger + CastFrom<Self> + CastInto<Self> + CastInto<u64> + ScalarMultiplier + DecomposableInto<u8>;
}Required Associated Types§
type DoublePrecision: MiniUnsignedInteger + CastFrom<Self> + CastInto<Self> + CastInto<u64> + ScalarMultiplier + DecomposableInto<u8>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".