(mut self, preallocate_node_capacity: usize)
| 418 | /// Set the initial node capacity for HTML tree. |
| 419 | #[must_use] |
| 420 | pub fn preallocate_node_capacity(mut self, preallocate_node_capacity: usize) -> Self { |
| 421 | self.preallocate_node_capacity = preallocate_node_capacity; |
| 422 | self |
| 423 | } |
| 424 | |
| 425 | /// Set the way to resolve stylesheets from various sources. |
| 426 | #[must_use] |
no outgoing calls