(&self)
| 39 | } |
| 40 | |
| 41 | pub fn is_empty(&self) -> bool { |
| 42 | self.package.is_none() && self.binary.is_none() |
| 43 | } |
| 44 | |
| 45 | pub fn include(&self, name: &str) -> bool { |
| 46 | self.package.as_ref().is_some_and(|p| p == name) |
no outgoing calls
no test coverage detected