pub struct Parts {
pub scheme: Option<Scheme>,
pub authority: Option<Authority>,
pub path_and_query: Option<PathAndQuery>,
_priv: (),
}
Expand description
The various parts of a URI.
This struct is used to provide to and retrieve from a URI.
Fields§
§scheme: Option<Scheme>
The scheme component of a URI
The authority component of a URI
path_and_query: Option<PathAndQuery>
The origin-form component of a URI
_priv: ()
Allow extending in the future
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for Parts
impl RefUnwindSafe for Parts
impl Send for Parts
impl Sync for Parts
impl Unpin for Parts
impl UnwindSafe for Parts
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