Set whether to include deleted vertices. # Arguments `include` - Whether to include deleted content # Example ```rust use atomic_core::output::repo::FileOutputOptions; let opts = FileOutputOptions::new().include_deleted(true); assert!(opts.include_deleted); ```
(mut self, include: bool)
| 182 | /// assert!(opts.include_deleted); |
| 183 | /// ``` |
| 184 | pub fn include_deleted(mut self, include: bool) -> Self { |
| 185 | self.include_deleted = include; |
| 186 | self |
| 187 | } |
| 188 | |
| 189 | /// Set the maximum number of vertices to process. |
| 190 | /// |
no outgoing calls