pub trait IntoBlankId: MaybeBlankId {
    // Required method
    fn into_blank(self) -> Option<Self::BlankId>;
}
Expand description

Types that can be turned into a blank node identifier.

Required Methods§

source

fn into_blank(self) -> Option<Self::BlankId>

Converts the value into a blank node identifier, if any.

Implementors§

source§

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

source§

impl<I: IntoBlankId, L> IntoBlankId for Term<I, L>