1use alloc::string::String; 2 3#[derive(Debug)] 4pub enum DriverError { 5 NotSupported, 6 Other(String), 7} 8 9pub type DriverResult<T = ()> = core::result::Result<T, DriverError>;