driver-interface 0.5.5

Sparreal OS kernel
Documentation
1
2
3
4
5
6
7
8
9
use alloc::string::String;

#[derive(Debug)]
pub enum DriverError {
    NotSupported,
    Other(String),
}

pub type DriverResult<T = ()> = core::result::Result<T, DriverError>;