read-url 0.0.10

Read from a wide variety of URL types
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::{
    super::{context::*, url::*},
    http_url::*,
};

impl UrlContext {
    /// Construct a [HttpUrl].
    pub fn http_url(self: &UrlContextRef, url: url::Url) -> UrlRef {
        HttpUrl::new(self, url).into()
    }
}