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