pub trait TailwindInstance {
    fn id(&self) -> String;

    fn selectors(&self) -> String { ... }
fn attributes(&self) -> BTreeSet<CssAttribute> { ... }
fn write_css(&self, f: &mut dyn Write) -> Result<()> { ... } }

Required methods

used to deduplication and marking

Provided methods

Implementors