pub trait TryIntoBlankId: MaybeBlankId + Sized {
    // Required method
    fn try_into_blank(self) -> Result<Self::BlankId, Self>;
}
Expand description

Types that can be turned into a blank node identifier.

Required Methods§

source

fn try_into_blank(self) -> Result<Self::BlankId, Self>

Object Safety§

This trait is not object safe.

Implementors§

source§

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

source§

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