pub trait MaybeBlankId {
    type BlankId;
}
Expand description

Types that may represent a blank node identifier.

Required Associated Types§

source

type BlankId

Inner blank node identifier type.

Implementors§

source§

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

§

type BlankId = B

source§

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