(group: u8, number: u8)
| 229 | #[doc(alias = "_IO")] |
| 230 | #[inline] |
| 231 | pub const fn none(group: u8, number: u8) -> Opcode { |
| 232 | from_components(Direction::None, group, number, 0) |
| 233 | } |
| 234 | |
| 235 | /// Create a new reading opcode from a group, a number and the type of |
| 236 | /// data. |
nothing calls this directly
no test coverage detected