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