pub struct UrlParts {
pub scheme: String,
pub host: String,
pub port: String,
pub path: String,
pub query: String,
pub fragment: String,
}Expand description
URL components.
Fields§
§scheme: String§host: String§port: String§path: String§query: String§fragment: StringAuto Trait Implementations§
impl Freeze for UrlParts
impl RefUnwindSafe for UrlParts
impl Send for UrlParts
impl Sync for UrlParts
impl Unpin for UrlParts
impl UnsafeUnpin for UrlParts
impl UnwindSafe for UrlParts
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