1 2 3 4 5 6 7 8 9
enum NoDisplay { ND, } fn main() { let expr = NoDisplay::ND; let _ = stylist::css! { background: ${expr}; }; }