pub struct Query<'a> { /* private fields */ }
Expand description
A web-based URL query.
§Validation
A query will never be empty and will always start with a ‘?’.
The query string can contain any US-ASCII letter, number, or punctuation char excluding ‘#’ since this char denotes the end of the query in the URL.
Implementations§
Trait Implementations§
Source§impl<'a> Ord for Query<'a>
impl<'a> Ord for Query<'a>
Source§impl<'a> PartialOrd for Query<'a>
impl<'a> PartialOrd for Query<'a>
impl<'a> Copy for Query<'a>
impl<'a> Eq for Query<'a>
impl<'a> StructuralPartialEq for Query<'a>
Auto Trait Implementations§
impl<'a> Freeze for Query<'a>
impl<'a> RefUnwindSafe for Query<'a>
impl<'a> Send for Query<'a>
impl<'a> Sync for Query<'a>
impl<'a> Unpin for Query<'a>
impl<'a> UnwindSafe for Query<'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