pub type Ev3Result<T> = Result<T, Ev3Error>;
Helper Result type for easy access.
Result
pub enum Ev3Result<T> { Ok(T), Err(Ev3Error), }
Contains the success value
Contains the error value