[][src]Crate actix_service

Modules

blank
boxed

Structs

AndThen

Service for the and_then combinator, chaining a computation onto the end of another service which completes successfully.

AndThenNewService

AndThenNewService new service combinator

AndThenTransform

Apply new service combinator

Apply

Apply service combinator

ApplyNewService

ApplyNewService new service combinator

FnService
FnTransform
FromErr

Service for the from_err combinator, changing the error type of a service.

FromErrNewService

NewService for the from_err combinator, changing the type of a new service's error.

Map

Service for the map combinator, changing the type of a service's response.

MapErr

Service for the map_err combinator, changing the type of a service's error.

MapErrNewService

NewService for the map_err combinator, changing the type of a new service's error.

MapInitErr

MapInitErr service combinator

MapNewService

MapNewService new service combinator

Then

Service for the then combinator, chaining a computation onto the end of another service.

ThenNewService

ThenNewService new service combinator

Enums

Void

The empty type for cases which can't occur.

Traits

IntoConfigurableNewService

Trait for types that can be converted to a configurable NewService

IntoNewService

Trait for types that can be converted to a NewService

IntoService

Trait for types that can be converted to a Service

IntoTransform

Trait for types that can be converted to a transform service

NewService

Creates new Service values.

Service

An asynchronous function from Request to a Response.

ServiceExt

An extension trait for Services that provides a variety of convenient adapters

Transform

Transform service factory.

Functions

fn_cfg_factory

Create NewService for function that can produce services with configuration

fn_factory

Create NewService for function that can produce services

fn_service

Create NewService for function that can act as Service