Set whether to include deleted content.
(mut self, include: bool)
| 84 | |
| 85 | /// Set whether to include deleted content. |
| 86 | pub fn include_deleted(mut self, include: bool) -> Self { |
| 87 | self.include_deleted = include; |
| 88 | self |
| 89 | } |
| 90 | |
| 91 | /// Set maximum span count. |
| 92 | pub fn max_vertices(mut self, max: usize) -> Self { |
no outgoing calls