pub trait FromBlankId: MaybeBlankId {
    // Required method
    fn from_blank(b: Self::BlankId) -> Self;
}
Expand description

Types that can be constructed from a blank node identifier.

Required Methods§

source

fn from_blank(b: Self::BlankId) -> Self

Builds a value from a blank node identifier.

Object Safety§

This trait is not object safe.

Implementors§

source§

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

source§

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