(&self, id: TrunkId)
| 86 | } |
| 87 | |
| 88 | fn has_trunk(&self, id: TrunkId) -> Result<bool, Self::Error> { |
| 89 | Ok(self.trunks.contains_key(&id)) |
| 90 | } |
| 91 | |
| 92 | fn del_trunk(&mut self, id: TrunkId) -> Result<bool, Self::Error> { |
| 93 | if let Some(trunk) = self.trunks.remove(&id) { |
nothing calls this directly
no test coverage detected