pub trait Concat<Rhs = Self> {
type Output;
// Required method
fn concat(&self, rhs: &Self) -> Self::Output;
}
Expand description
Concatenate two numbers into a “wide” twice-width value, using the rhs
value as the least significant value.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.