Crate dev_bestia_simple_server[][src]

Expand description

A simple web-server.

The simple-server crate is designed to give you the tools to to build an HTTP server, based around the http crate, blocking I/O, and a threadpool.

We call it ‘simple’ want to keep the code small, and easy to understand. This is why we’re only using blocking I/O. Depending on your needs, you may or may not want to choose another server. However, just the simple stuff is often enough for many projects.

Examples

At its core, simple-server contains a Server. The Server is passed a handler upon creation, and the listen method is used to start handling connections.

The other types are from the http crate, and give you the ability to work with various aspects of HTTP. The Request, Response, and ResponseBuilder types are used by the handler you give to Server, for example.

To see examples of this crate in use, please consult the examples directory.

Structs

An HTTP response builder

A possible error value when converting a StatusCode from a u16 or &str

The Request Method (VERB)

Component parts of an HTTP Response

Represents an HTTP request.

Represents an HTTP response

An HTTP response builder

A web server.

An HTTP status code (status-code in RFC 7230 et al.).

Enums

Various errors that may happen while handling requests.

Type Definitions