pub trait ConvertCollectionwhere
Self: Sized,{
// Required method
fn convert<'a>(d: &'a VDom<'a>) -> Result<Vec<Self>, Error>;
}Expand description
Implements a conversion from a DOM object to a collection of its own type.
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.