Set the maximum number of vertices to process. # Arguments `max` - Maximum span count # Example ```rust use atomic_core::output::repo::FileOutputOptions; let opts = FileOutputOptions::new().max_vertices(5000); assert_eq!(opts.max_vertices, Some(5000)); ```
(mut self, max: usize)
| 201 | /// assert_eq!(opts.max_vertices, Some(5000)); |
| 202 | /// ``` |
| 203 | pub fn max_vertices(mut self, max: usize) -> Self { |
| 204 | self.max_vertices = Some(max); |
| 205 | self |
| 206 | } |
| 207 | |
| 208 | /// Set whether to flush the writer after output. |
| 209 | /// |
no outgoing calls