pub trait Func: Func<Blocks: Arena<Self::Block, Output: Block<Self>>> {
type Value;
type Values: Arena<Self::Value, Output: Value<Self>>;
// Required methods
fn values(&self) -> &Self::Values;
fn values_mut(&mut self) -> &mut Self::Values;
}
Required Associated Types§
Required Methods§
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.