pub trait DecomposeIn<Cell> {
// Required method
fn cells(&self) -> impl IntoIterator<Item = Cell>;
}Expand description
Implementations of this trait represent complex types that aggregate a
collection of AssignedCell values.
Required Methods§
Sourcefn cells(&self) -> impl IntoIterator<Item = Cell>
fn cells(&self) -> impl IntoIterator<Item = Cell>
Returns an iterator of Cell instances.
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.