(self)
| 308 | |
| 309 | impl Opts { |
| 310 | pub fn build(self) -> RustWasm { |
| 311 | let mut r = RustWasm::new(); |
| 312 | r.skip = self.skip.iter().cloned().collect(); |
| 313 | r.opts = self; |
| 314 | r |
| 315 | } |
| 316 | |
| 317 | fn merge_structurally_equal_types(&self) -> bool { |
| 318 | const DEFAULT: bool = false; |