pub trait IntoElementContent {
// Required method
fn append_to(self, children: &mut Vec<Element>);
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
pub trait IntoElementContent {
// Required method
fn append_to(self, children: &mut Vec<Element>);
}This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".