pub trait NamedNodeExt {
// Required methods
fn expand<T: Based>(&self, turtle: &T) -> Option<String>;
fn expand_step<T: Based>(
&self,
turtle: &T,
done: HashSet<String>,
) -> Option<String>;
}Required Methods§
Sourcefn expand<T: Based>(&self, turtle: &T) -> Option<String>
fn expand<T: Based>(&self, turtle: &T) -> Option<String>
Fully expand a (possibly prefixed) named node to an absolute IRI string.
fn expand_step<T: Based>( &self, turtle: &T, done: HashSet<String>, ) -> Option<String>
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.