pub type Ev3Result<T> = Result<T, Ev3Error>;
The result type for the ev3dev_rs crate.
pub enum Ev3Result<T> { Ok(T), Err(Ev3Error), }
Contains the success value
Contains the error value