Trait PropAttribute
pub trait PropAttribute<K, P>where
P: IntoProperty,{
type Output;
// Required method
fn prop(self, key: K, value: P) -> Self::Output;
}
Expand description
Adds an attribute that modifies the DOM properties.
Required Associated Types§
type Output
type Output
The type of the element with the new attribute added.