pub trait PushChunk<'a> {
// Required method
fn push_to_buffer<T>(&mut self, buffer: &mut Query<'a, T>);
}Expand description
A trait implemented by everything that goes inside a query.
Required Methods§
sourcefn push_to_buffer<T>(&mut self, buffer: &mut Query<'a, T>)
fn push_to_buffer<T>(&mut self, buffer: &mut Query<'a, T>)
Pushes the containing string and the params to the provided buffer.