pub trait AppendComponentswhere
Self: IteratorSoa,{
// Required methods
fn is_match<S: Storage>(storage: &S) -> bool;
fn append_components<I, S>(items: I, storage: &mut S) -> usize
where S: Storage,
I: IntoIterator<Item = Self>;
}Required Methods§
fn is_match<S: Storage>(storage: &S) -> bool
fn append_components<I, S>(items: I, storage: &mut S) -> usizewhere
S: Storage,
I: IntoIterator<Item = 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.