pub trait ConstChain<const N: usize>: Chain {
// Provided method
fn to_array(&self) -> [Self::Output; N]
where Self::Output: Copy + Default { ... }
}Expand description
Trait for Chain where its length is known at compile-time.
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.