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§
Sourcefn from_blank(b: Self::BlankId) -> Self
fn from_blank(b: Self::BlankId) -> Self
Builds a value from a blank node identifier.
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.