pub struct RequestLogger { /* private fields */ }
Expand description

A struct that can act as a logging middleware for Gotham.

We implement NewMiddleware here for Gotham to allow us to work with the request lifecycle correctly. This trait requires Clone, so that is also included.

Implementations§

Constructs a new RequestLogger instance.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more

Implementing gotham::middleware::Middleware allows us to hook into the request chain in order to correctly log out after a request has executed.

Entry point to the middleware. To pass the request on to the application, the middleware invokes the chain function with the provided state. Read more

Implementation of NewMiddleware is required for Gotham middleware.

This will simply dereference the internal state, rather than deriving NewMiddleware which will clone the structure - should be cheaper for repeated calls.

Returns a new middleware to be used to serve a request.

The type of Middleware created by the NewMiddleware.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.