pub trait AuxCombine {
// Required method
fn merge<'a, I: Iterator<Item = &'a Self>>(iter: I) -> Self
where Self: 'a;
}
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.
Implementations on Foreign Types§
Implementors§
impl AuxCombine for cairo_lang_lowering::destructs::PanicState
How to combine two panic states in a flow divergence.