pub type DevResult<T = ()> = Result<T, DevError>;
A specialized Result type for device operations.
Result
enum DevResult<T = ()> { Ok(T), Err(DevError), }
Contains the success value
Contains the error value