pub const EXTRACT_REQUEST_COOKIES_ERROR_INTO_RESPONSE: ErrorHandler;Expand description
A handle to add ExtractRequestCookiesError::into_response() as an error handler to your Pavex application.
§Example
ⓘ
use pavex::Blueprint;
// [...]
// ^ Import `EXTRACT_REQUEST_COOKIES_ERROR_INTO_RESPONSE` here
let mut bp = Blueprint::new();
// Add `ExtractRequestCookiesError::into_response()` as an error handler to your application.
bp.error handler(EXTRACT_REQUEST_COOKIES_ERROR_INTO_RESPONSE);