(&self, sandbox: &Sandbox)
| 496 | /// registration order. |
| 497 | #[must_use] |
| 498 | pub fn active_names(&self, sandbox: &Sandbox) -> Vec<String> { |
| 499 | self.active_for(sandbox) |
| 500 | .into_iter() |
| 501 | .map(|ext| ext.name().to_string()) |
| 502 | .collect() |
| 503 | } |
| 504 | |
| 505 | pub fn validate(&self) -> LifecycleResult<()> { |
| 506 | let mut names = HashSet::new(); |
nothing calls this directly
no test coverage detected