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§
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.