Trait IntoId

Source
pub trait IntoId: MaybeId {
    // Required method
    fn into_id(self) -> Id<Self::Iri, Self::BlankId>;
}
Expand description

Type that can surely be converted into an Id.

Required Methods§

Source

fn into_id(self) -> Id<Self::Iri, Self::BlankId>

Implementors§

Source§

impl<I, B> IntoId for Id<I, B>