pub type PResult<A> = Result<A, RDFParseError>;
enum PResult<A> { Ok(A), Err(RDFParseError), }
Contains the success value
Contains the error value