Convert to file output options.
(self)
| 96 | |
| 97 | /// Convert to file output options. |
| 98 | fn to_file_output_options(self) -> FileOutputOptions { |
| 99 | let mut opts = FileOutputOptions::new(); |
| 100 | if self.include_deleted { |
| 101 | opts = opts.include_deleted(true); |
| 102 | } |
| 103 | if let Some(max) = self.max_vertices { |
| 104 | opts = opts.max_vertices(max); |
| 105 | } |
| 106 | opts |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | // RETRIEVE RESULT |
no test coverage detected