Expand description
Device driver prelude that includes some traits and types.
Enums
- The error type for device operation failures.
- All supported device types.
Traits
- Common operations that require all device drivers to implement.
- BlockDriverOps
block
Operations that require a block storage device driver to implement. - DisplayDriverOps
display
Operations that require a graphics device driver to implement. - NetDriverOps
net
Operations that require a network device (NIC) driver to implement.
Type Aliases
- AxBlockDevice
block
The unified type of the block storage devices. - AxDisplayDevice
display
The unified type of the graphics display devices. - AxNetDevice
net
The unified type of the NIC devices. - A specialized
Result
type for device operations.