pub trait Resolve<S, T> {
    fn resolve(&self, other: S) -> T;
}
Expand description

Resolve some kind of IRI with self as the base.

Required methods

Resolve relative IRI(s) somewhat contained in other with self as the base IRI.

Implementors