stylist 0.15.1

Stylist is a CSS-in-Rust styling solution for WebAssembly Applications.
Documentation
1
2
3
4
5
6
7
8
9
error[E0277]: `NoDisplay` doesn't implement `std::fmt::Display`
 --> tests/inline_integrations/no_display_impl-fail.rs:7:23
  |
7 |         background: ${expr};
  |                       ^^^^ `NoDisplay` cannot be formatted with the default formatter
  |
  = help: the trait `std::fmt::Display` is not implemented for `NoDisplay`
  = note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead
  = note: required for the cast from `&NoDisplay` to `&dyn std::fmt::Display`