pub type GpioReadResult = Result<bool, i32>;
pub enum GpioReadResult { Ok(bool), Err(i32), }
Contains the success value
Contains the error value