pub trait IntoChildren {
// Required method
fn extend_children(self, out: &mut Vec<Cached>);
}Expand description
Flattens child-builder inputs into cached children.
Required Methods§
Sourcefn extend_children(self, out: &mut Vec<Cached>)
fn extend_children(self, out: &mut Vec<Cached>)
Appends all represented children to out.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".