type OptPartRes<T> = Result<T, String>;
test
Result of parsing the option part.
enum OptPartRes<T> { Ok(T), Err(String), }
Contains the success value
Contains the error value