ErrorHandlerStatusLookupWithConfiguration

Type Alias ErrorHandlerStatusLookupWithConfiguration 

Source
pub type ErrorHandlerStatusLookupWithConfiguration = ErrorHandlerStatusLookup<Arc<ServerConfiguration>>;
Expand description

A type alias for the error handler status lookup structure, using Arc to allow for shared ownership of server configurations.

Aliased Type§

pub struct ErrorHandlerStatusLookupWithConfiguration {
    default_value: Option<Arc<ServerConfiguration>>,
    catchall_value: Option<Arc<ServerConfiguration>>,
    status_code_values: HashMap<u16, Arc<ServerConfiguration>>,
}

Fields§

§default_value: Option<Arc<ServerConfiguration>>§catchall_value: Option<Arc<ServerConfiguration>>§status_code_values: HashMap<u16, Arc<ServerConfiguration>>