pub trait ElementType {
type Props<'a>
where Self: 'a;
}Expand description
A trait implemented by all element types to define the properties that can be passed to them.
This trait is automatically implemented for all types that implement Component.
Required Associated Types§
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.