pub trait HexMul<H: Hex> {
type Output: Hex;
type Carry: Hex;
}Expand description
This is an internal implementation of multiplication of two hexadecimal
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".