pub trait AdvancedDynamicArray<T, S>: DynamicArray<T> + FromIterator<T> {
type InnerArrayType: DynamicArray<S>;
}Expand description
When using advanced commands, we must be able to provide a dynamic array for both the type and the underlying type This trait allows given a type T with a dynamic array to get a dynamic array for another type S
Required Associated Types§
type InnerArrayType: DynamicArray<S>
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.