pub trait ConcatOutputSize: ArrayLength<u8> {
type ConcatOutput;
// Required method
fn concat(
a: GenericArray<u8, Self>,
b: GenericArray<u8, Self>,
) -> Self::ConcatOutput;
}Required Associated Types§
type ConcatOutput
Required Methods§
fn concat( a: GenericArray<u8, Self>, b: GenericArray<u8, Self>, ) -> Self::ConcatOutput
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.