pub trait ReceivesPrefetch<R: ManyBackref>: PrefetchKey<R> {
// Required method
fn receive_prefetch(&mut self, rows: Vec<R::To>);
}Expand description
A record or model that can receive an explicit prefetch result.
Required Methods§
Sourcefn receive_prefetch(&mut self, rows: Vec<R::To>)
fn receive_prefetch(&mut self, rows: Vec<R::To>)
Inserts prefetched child rows into the receiver.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".