pub type DiscoveryResult<T> = Result<T, String>;
Result type for hardware discovery
pub enum DiscoveryResult<T> { Ok(T), Err(String), }
Contains the success value
Contains the error value