pub struct IriParts<'a> {
pub scheme: &'a Scheme,
pub authority: Option<&'a Authority>,
pub path: &'a Path,
pub query: Option<&'a Query>,
pub fragment: Option<&'a Fragment>,
}
Fields§
§scheme: &'a Scheme
§path: &'a Path
§query: Option<&'a Query>
§fragment: Option<&'a Fragment>
Trait Implementations§
Source§impl<'a> Ord for IriParts<'a>
impl<'a> Ord for IriParts<'a>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> PartialOrd for IriParts<'a>
impl<'a> PartialOrd for IriParts<'a>
impl<'a> Copy for IriParts<'a>
impl<'a> Eq for IriParts<'a>
impl<'a> StructuralPartialEq for IriParts<'a>
Auto Trait Implementations§
impl<'a> Freeze for IriParts<'a>
impl<'a> RefUnwindSafe for IriParts<'a>
impl<'a> Send for IriParts<'a>
impl<'a> Sync for IriParts<'a>
impl<'a> Unpin for IriParts<'a>
impl<'a> UnwindSafe for IriParts<'a>
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