pub trait IntoId { type Iri; type BlankId; // Required method fn into_id(self) -> Id<Self::Iri, Self::BlankId>; }
Type that can be converted into an Id.
Id