Returns the name of this bindings generator when passed to `wit-bindgen`. By default this is `Some(self.display())`, but it can be overridden if necessary. Returning `None` here means that no bindings generator is supported.
(&self)
| 1272 | /// necessary. Returning `None` here means that no bindings generator is |
| 1273 | /// supported. |
| 1274 | fn bindgen_name(&self) -> Option<&str> { |
| 1275 | Some(self.display()) |
| 1276 | } |
| 1277 | |
| 1278 | /// Performs compilation as specified by `compile`. |
| 1279 | fn compile(&self, runner: &Runner, compile: &Compile) -> Result<()>; |
no test coverage detected