logo
pub trait TailwindInstance: Display {
    fn id(&self) -> String { ... }
fn inlineable(&self) -> bool { ... }
fn boxed(self) -> Box<dyn TailwindInstance>
    where
        Self: Sized,
        Self: 'static
, { ... }
fn selectors(&self, ctx: &TailwindBuilder) -> String { ... }
fn attributes(&self, ctx: &TailwindBuilder) -> BTreeSet<CssAttribute> { ... }
fn write_css(&self, f: &mut dyn Write, ctx: &TailwindBuilder) -> Result<()> { ... }
fn build_css(&self, ctx: &TailwindBuilder) { ... } }

Provided methods

used to deduplication and marking

used to deduplication and marking

const ID: &’static str;

write css to buffers

Build css ast

Implementors