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