pub enum WebError {
Encoding,
}Expand description
Something went wrong with the rouille http request or response.
Variants§
Encoding
A parameter was encoded incorrectly.
This may happen for example due to a query parameter that is not valid utf8 when the query parameters are necessary for OAuth processing.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WebError
impl RefUnwindSafe for WebError
impl Send for WebError
impl Sync for WebError
impl Unpin for WebError
impl UnwindSafe for WebError
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