read_url/http/
context.rs

1use super::{
2    super::{context::*, url::*},
3    http_url::*,
4};
5
6impl UrlContext {
7    /// Construct a [HttpUrl].
8    pub fn http_url(self: &UrlContextRef, url: url::Url) -> UrlRef {
9        HttpUrl::new(self, url).into()
10    }
11}