pub struct Url<'a> {
pub scheme: &'a str,
pub host: &'a str,
pub path: &'a str,
}Fields§
§scheme: &'a str§host: &'a str§path: &'a strImplementations§
Trait Implementations§
impl<'a> Eq for Url<'a>
impl<'a> StructuralPartialEq for Url<'a>
Auto Trait Implementations§
impl<'a> Freeze for Url<'a>
impl<'a> RefUnwindSafe for Url<'a>
impl<'a> Send for Url<'a>
impl<'a> Sync for Url<'a>
impl<'a> Unpin for Url<'a>
impl<'a> UnwindSafe for Url<'a>
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