pub trait Target<F: Func + ?Sized>: HasValues<F> + Target<F> {
// Required methods
fn push_value(&mut self, v: F::Value);
fn from_values_and_block(
a: impl Iterator<Item = F::Value>,
k: F::Block,
) -> Self;
}
Required Methods§
fn push_value(&mut self, v: F::Value)
fn from_values_and_block(a: impl Iterator<Item = F::Value>, k: F::Block) -> 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.