Look up a binary by exact path.
(&self, path: &str)
| 160 | impl BinaryRegistry { |
| 161 | /// Look up a binary by exact path. |
| 162 | pub fn get(&self, path: &str) -> Option<&BinaryCapability> { |
| 163 | self.binaries.get(path) |
| 164 | } |
| 165 | |
| 166 | /// Look up a binary, falling back to glob matching, then to a conservative |
| 167 | /// unknown descriptor. |
no outgoing calls
no test coverage detected