pub struct Url {
pub raw: Option<String>,
pub protocol: Option<String>,
pub full: Option<String>,
pub hostname: Option<String>,
pub port: Option<i32>,
pub pathname: Option<String>,
pub search: Option<String>,
pub hash: Option<String>,
}
Fields§
§raw: Option<String>
§protocol: Option<String>
§full: Option<String>
§hostname: Option<String>
§port: Option<i32>
§pathname: Option<String>
§search: Option<String>
§hash: Option<String>
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