(
&self,
channel: G,
key: &[G],
)
| 54 | impl IOBuffer { |
| 55 | #[inline] |
| 56 | pub fn get_info( |
| 57 | &self, |
| 58 | channel: G, |
| 59 | key: &[G], |
| 60 | ) -> Result<&IOKeyInfo, ExecError> { |
| 61 | self.map.get(&(channel, key.to_vec())).ok_or(ExecError::InvalidIOKey) |
| 62 | } |
| 63 | fn set_info( |
| 64 | &mut self, |
| 65 | channel: G, |
no test coverage detected