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