pub enum UrlError {
Path,
Query,
TooManyQueryParams,
}Expand description
All errors that could result from parsing a URL
Variants§
Path
An error while parsing the path part of the URL
Query
An error while parsing the query parameters part of the URL
TooManyQueryParams
The URL has more query parameters than the length of the buffer passed
Trait Implementations§
impl Eq for UrlError
impl StructuralPartialEq for UrlError
Auto Trait Implementations§
impl Freeze for UrlError
impl RefUnwindSafe for UrlError
impl Send for UrlError
impl Sync for UrlError
impl Unpin for UrlError
impl UnwindSafe for UrlError
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