pub trait IntoTerm {
    type Iri;
    type BlankId;
    type Literal;

    fn into_term(self) -> Term<Self::Iri, Self::BlankId, Self::Literal>;
}

Required Associated Types

Required Methods

Implementors