pub type ADBResult<T> = Result<T, ADBError>;
pub enum ADBResult<T> { Ok(T), Err(ADBError), }
Contains the success value
Contains the error value