pub trait AsBlankId: MaybeBlankId {
// Required method
fn as_blank(&self) -> Option<&Self::BlankId>;
// Provided method
fn is_blank(&self) -> bool { ... }
}Expand description
Types that may have a blank node identifier representation that can be borrowed.