(group: u8, number: u8)
| 259 | #[doc(alias = "_IOWR")] |
| 260 | #[inline] |
| 261 | pub const fn read_write<T>(group: u8, number: u8) -> Opcode { |
| 262 | from_components(Direction::ReadWrite, group, number, mem::size_of::<T>()) |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | /// The direction that an `ioctl` is going. |
nothing calls this directly
no test coverage detected