pub struct Url {
pub url: String,
pub scheme: String,
pub host: String,
pub port: u16,
pub path_query: String,
pub path: String,
/* private fields */
}Fields§
§url: String§scheme: String§host: String§port: u16§path_query: String§path: StringImplementations§
Trait Implementations§
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