Intended to be used in the header comment of generated code to help indicate what options were specified.
(&self)
| 115 | /// Intended to be used in the header comment of generated code to help |
| 116 | /// indicate what options were specified. |
| 117 | pub fn debug_opts(&self) -> impl Iterator<Item = String> + '_ { |
| 118 | self.async_.iter().map(|opt| opt.to_string()) |
| 119 | } |
| 120 | |
| 121 | /// Tests whether all `--async` options were used throughout bindings |
| 122 | /// generation, returning an error if any were unused. |
no test coverage detected