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