Enum pavex::cookie::errors::ExtractRequestCookiesError
source · #[non_exhaustive]pub enum ExtractRequestCookiesError {
InvalidHeaderValue(ToStrError),
MissingPair(MissingPairError),
EmptyName(EmptyNameError),
Crypto(CryptoError),
Decoding(DecodingError),
Unexpected(UnexpectedError),
}
Expand description
The error type returned by extract_request_cookies
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
InvalidHeaderValue(ToStrError)
MissingPair(MissingPairError)
EmptyName(EmptyNameError)
Crypto(CryptoError)
Decoding(DecodingError)
Unexpected(UnexpectedError)
Implementations§
source§impl ExtractRequestCookiesError
impl ExtractRequestCookiesError
sourcepub fn into_response(&self) -> Response
pub fn into_response(&self) -> Response
Convert an ExtractRequestCookiesError
into an HTTP response.
It returns a 400 Bad Request
to the caller.
The body provides details on what exactly went wrong.
Trait Implementations§
source§impl Debug for ExtractRequestCookiesError
impl Debug for ExtractRequestCookiesError
source§impl Display for ExtractRequestCookiesError
impl Display for ExtractRequestCookiesError
source§impl Error for ExtractRequestCookiesError
impl Error for ExtractRequestCookiesError
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 ExtractRequestCookiesError
impl !RefUnwindSafe for ExtractRequestCookiesError
impl Send for ExtractRequestCookiesError
impl Sync for ExtractRequestCookiesError
impl Unpin for ExtractRequestCookiesError
impl !UnwindSafe for ExtractRequestCookiesError
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