pub type I2CResult<T> = Result<T>;
I2C mock result type
enum I2CResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value