[][src]Crate actix_service

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

Apply

Apply service combinator

ApplyNewService

ApplyNewService new service combinator

Blank

Empty service

BlankNewService

Empty service factory

FnNewService
FnNewTransform
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

Traits

IntoNewService

Trait for types that can be converted to a NewService

IntoNewTransform

Trait for types that can be converted to a TransfromNewService

IntoService

Trait for types that can be converted to a Service

IntoTransform

Trait for types that can be converted to a TransformService

NewService

Creates new Service values.

NewTransform

Transform service factory

Service

An asynchronous function from Request to a Response.

ServiceExt

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

Transform

An asynchronous function for transforming service call result.