pub struct JsonUrl {
pub scheme: String,
pub host: Option<String>,
pub port: Option<u16>,
pub path: String,
pub query: Option<String>,
pub fragment: Option<String>,
pub domain: Option<String>,
pub origin: String,
pub query_pairs: Vec<(String, String)>,
}Fields§
§scheme: String§host: Option<String>§port: Option<u16>§path: String§query: Option<String>§fragment: Option<String>§domain: Option<String>§origin: String§query_pairs: Vec<(String, String)>Trait Implementations§
Auto Trait Implementations§
impl Freeze for JsonUrl
impl RefUnwindSafe for JsonUrl
impl Send for JsonUrl
impl Sync for JsonUrl
impl Unpin for JsonUrl
impl UnwindSafe for JsonUrl
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