calyx_opt::analysis

Trait AssignmentAnalysis

Source
pub trait AssignmentAnalysis<'a, T: 'a>: Iterator<Item = &'a Assignment<T>>
where Self: Sized,
{ // Provided method fn analysis(self) -> AssignmentIterator<'a, T, Self> { ... } }
Expand description

Analyzes that can be performed on a set of assignments.

Provided Methods§

Source

fn analysis(self) -> AssignmentIterator<'a, T, 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.

Implementors§

Source§

impl<'a, T: 'a, I> AssignmentAnalysis<'a, T> for I
where I: Iterator<Item = &'a Assignment<T>> + 'a,