pub trait IntoParsable {
type Target;
// Required method
fn into_parsable(self) -> Self::Target;
}
Expand description
Utility trait to support TripleParser::parse_str
and QuadParser::parse_str
.
Required Associated Types§
Required Methods§
Sourcefn into_parsable(self) -> Self::Target
fn into_parsable(self) -> Self::Target
Convert into the parsable target type