Set maximum span count.
(mut self, max: usize)
| 90 | |
| 91 | /// Set maximum span count. |
| 92 | pub fn max_vertices(mut self, max: usize) -> Self { |
| 93 | self.max_vertices = Some(max); |
| 94 | self |
| 95 | } |
| 96 | |
| 97 | /// Convert to file output options. |
| 98 | fn to_file_output_options(self) -> FileOutputOptions { |
no outgoing calls