pub struct Url(Url);
Expand description
Represents a URL.
It is used to represent the upstream URL of a package. This type does not yet enforce a secure connection (e.g. HTTPS).
The Url
type wraps the url::Url
type.
§Examples
use std::str::FromStr;
use alpm_types::Url;
// Create Url from &str
let url = Url::from_str("https://example.com/download")?;
assert_eq!(url.as_str(), "https://example.com/download");
// Format as String
assert_eq!(format!("{url}"), "https://example.com/download");
Tuple Fields§
§0: Url
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Url
impl<'de> Deserialize<'de> for Url
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl FromStr for Url
impl FromStr for Url
impl Eq for Url
impl StructuralPartialEq for Url
Auto Trait Implementations§
impl Freeze for Url
impl RefUnwindSafe for Url
impl Send for Url
impl Sync for Url
impl Unpin for Url
impl UnwindSafe for Url
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more