ssa_traits

Trait Func

Source
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§

Source

type Value

Source

type Values: Arena<Self::Value, Output: Value<Self>>

Required Methods§

Source

fn values(&self) -> &Self::Values

Source

fn values_mut(&mut self) -> &mut Self::Values

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.

Implementors§