pub trait IndexedProducerCallback<'p, I> {
type Output;
// Required method
fn callback<P>(self, producer: P) -> Self::Output
where P: IndexedProducer<Item = I> + 'p;
}Expand description
The IndexedProducerCallback trait is a kind of generic closure,
analogous to FnOnce. See the corresponding section in
the plumbing README for more details.
Required Associated Types§
Sourcetype Output
type Output
The type of value returned by this callback. Analogous to
Output from the FnOnce trait.
Required Methods§
Sourcefn callback<P>(self, producer: P) -> Self::Outputwhere
P: IndexedProducer<Item = I> + 'p,
fn callback<P>(self, producer: P) -> Self::Outputwhere
P: IndexedProducer<Item = I> + 'p,
Invokes the callback with the given producer as argument. The
key point of this trait is that this method is generic over
P, and hence implementors must be defined for any producer.
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.