pub trait Invert {
type Output;
// Required method
fn invert(self) -> Self::Output;
}Expand description
Converts between standard numbers and inverted ones that have the most significant digit on the outside.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".