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

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

Required Associated Types

Required Methods

Implementors