pub trait SpawnChildBatchExt {
// Required method
fn with_child_batch<I>(
&mut self,
parent: Entity,
iter_bundles: I,
) -> &mut Self
where I: IntoIterator + Send + Sync + 'static,
I::Item: Bundle;
}
Required Methods§
fn with_child_batch<I>(&mut self, parent: Entity, iter_bundles: I) -> &mut Self
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.