Trait StyleAttribute
pub trait StyleAttribute<S>where
S: IntoStyle,{
type Output;
// Required method
fn style(self, value: S) -> Self::Output;
}
Expand description
Adds an attribute that modifies the CSS styles.
Required Associated Types§
type Output
type Output
The type of the element with the new attribute added.