(mut self, keep_at_rules: bool)
| 371 | /// Override whether "at-rules" should be kept after processing. |
| 372 | #[must_use] |
| 373 | pub fn keep_at_rules(mut self, keep_at_rules: bool) -> Self { |
| 374 | self.keep_at_rules = keep_at_rules; |
| 375 | self |
| 376 | } |
| 377 | |
| 378 | /// Override whether trailing semicolons and spaces between properties and values should be removed. |
| 379 | #[must_use] |
no outgoing calls