(mut self, extra_css: Option<Cow<'a, str>>)
| 411 | /// Set additional CSS to inline. |
| 412 | #[must_use] |
| 413 | pub fn extra_css(mut self, extra_css: Option<Cow<'a, str>>) -> Self { |
| 414 | self.extra_css = extra_css; |
| 415 | self |
| 416 | } |
| 417 | |
| 418 | /// Set the initial node capacity for HTML tree. |
| 419 | #[must_use] |
no outgoing calls