pub trait ParseRdf: Sized {
type LexicalForm: LexicalFormOf<Self> + ?Sized;
// Provided method
fn parse_rdf(lexical_value: &str) -> ParseRdfResult<Self, Self::LexicalForm> { ... }
}Expand description
Parse a value directly from its RDF lexical form.