(&self, path: &str)
| 20 | } |
| 21 | |
| 22 | fn list(&self, path: &str) -> anyhow::Result<Vec<SharedString>> { |
| 23 | Ok(Self::iter() |
| 24 | .filter_map(|p| p.starts_with(path).then(|| p.into())) |
| 25 | .collect()) |
| 26 | } |
| 27 | } |
nothing calls this directly
no outgoing calls
no test coverage detected