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