Trait vulkanite::AdvancedDynamicArray
source · 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>
Object Safety§
This trait is not object safe.