pub trait UrlRelativeEvaluate<'a>:
Send
+ Sync
+ 'a {
// Required method
fn evaluate<'url>(&self, _: &'url str) -> Option<Cow<'url, str>>;
}Expand description
Types that implement this trait can be used to convert a relative URL into an absolute URL.
This evaluator is only called when the URL is relative; absolute URLs are not evaluated.
See url_relative for more details.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".