pub enum RequestParseError {
InvalidHeaderName(String),
InvalidHeaderValue(String),
InvalidHttpMethod(String),
InvalidUri(String),
MissingMethod,
MissingUri,
VariableNotFound(String),
}
Variants§
InvalidHeaderName(String)
InvalidHeaderValue(String)
InvalidHttpMethod(String)
InvalidUri(String)
MissingMethod
MissingUri
VariableNotFound(String)
Trait Implementations§
Source§impl Debug for RequestParseError
impl Debug for RequestParseError
Source§impl Display for RequestParseError
impl Display for RequestParseError
Source§impl Error for RequestParseError
impl Error for RequestParseError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for RequestParseError
impl RefUnwindSafe for RequestParseError
impl Send for RequestParseError
impl Sync for RequestParseError
impl Unpin for RequestParseError
impl UnwindSafe for RequestParseError
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