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.
pub trait ClassAttribute<C>where
C: IntoClass,{
type Output;
// Required method
fn class(self, value: C) -> Self::Output;
}Adds an attribute that modifies the class.