(&self)
| 481 | |
| 482 | #[must_use] |
| 483 | pub fn names(&self) -> Vec<String> { |
| 484 | self.extensions |
| 485 | .iter() |
| 486 | .map(|ext| ext.name().to_string()) |
| 487 | .collect() |
| 488 | } |
| 489 | |
| 490 | #[must_use] |
| 491 | pub fn descriptors(&self) -> Vec<ExtensionDescriptor> { |
no test coverage detected