(&self, feature: u64)
| 241 | |
| 242 | impl VirtioCommon { |
| 243 | pub fn feature_acked(&self, feature: u64) -> bool { |
| 244 | self.acked_features & (1 << feature) == 1 << feature |
| 245 | } |
| 246 | |
| 247 | pub fn ack_features(&mut self, value: u64) { |
| 248 | let mut v = value; |
no outgoing calls
no test coverage detected