pub trait AstArenaFlatten<'a>: AstType<'a> {
// Required method
fn flatten<'s: 'o, 'o>(
&'s self,
arena: &'s AstArena<'a>,
out: &mut Vec<&'o Self>,
);
}
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.