pub trait NodeRefContainer<E>:
Send
+ Clone
+ 'staticwhere
E: ElementType,{
// Required method
fn load(self, el: &Element);
}Expand description
Describes a container that can be used to hold a reference to an HTML element.
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.