Trait TryIntoBlankId

Source
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>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so 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>