pub trait Concat: ConcatMixed<Self, MixedOutput = Self::Output> {
type Output;
// Provided method
fn concat(&self, lo: &Self) -> Self::Output { ... }
}
Expand description
Concatenate two numbers into a “wide” double-width value, using the lo
value as the least significant value.
Required Associated Types§
Provided 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.