pub trait IntoParsable {
    type Target;
    fn into_parsable(self) -> Self::Target;
}
Expand description

Utility trait to support TripleParser::parse_str and QuadParser::parse_str.

Associated Types

Required methods

Implementations on Foreign Types

Implementors