Expand description
This module organizes and provides enums for various HTTP response status codes and categories. It includes the following categories:
- Informational (1xx)
- Success (2xx)
- Redirection (3xx)
- Client (4xx)
- Server (5xx)
- Local API codes (9xx)
- Service responses (6xx)
- Crawler-specific responses (7xx)
Re-exports§
pub use actix_responder::CustomResponse;pub use client::ResponsesClientCodes;pub use crawler::ResponsesCrawlerCodes;pub use informational::ResponsesInformationalCodes;pub use local::ResponsesLocalApiCodes;pub use redirection::ResponsesRedirectionCodes;pub use server::ResponsesServerCodes;pub use service::ResponsesServiceCodes;pub use success::ResponsesSuccessCodes;
Modules§
- actix_
responder - Custom HTTP Response Implementation
- client
- crawler
- informational
- local
- redirection
- server
- service
- success
Enums§
- Responses
Types - Enum representing the main categories of HTTP response codes. Combines multiple categories into a unified type for simplified handling.