gecko-dev/third_party/rust/tower-service
Bastien Orivel a548b924b4 Bug 1606281 - Part 2: Revendor dependencies. r=jgraham
Differential Revision: https://phabricator.services.mozilla.com/D71463
2020-04-20 15:25:46 +00:00
..
src
.cargo-checksum.json
CHANGELOG.md
Cargo.toml
LICENSE
README.md

README.md

Tower Service

The foundational Service trait that Tower is based on.

Overview

The Service trait provides the foundation upon which Tower is built. It is a simple, but powerful trait. At its heart, Service is just an asynchronous function of request to response.

async fn(Request) -> Result<Response, Error>

Implementations of Service take a request, the type of which varies per protocol, and returns a future representing the eventual completion or failure of the response.

Services are used to represent both clients and servers. An instance of Service is used through a client; a server implements Service.

By using standardizing the interface, middleware can be created. Middleware implement Service by passing the request to another Service. The middleware may take actions such as modify the request.

License

This project is licensed under the MIT license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Tower by you, shall be licensed as MIT, without any additional terms or conditions.