pub trait Zip<T, const N: usize> {
// Required method
fn zip<U>(self, with: [U; N]) -> [(T, U); N];
}Expand description
Zip arrays together.
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.