[][src]Struct tower_web::middleware::log::LogMiddleware

pub struct LogMiddleware { /* fields omitted */ }

Decorate a service by logging all received requests.

Methods

impl LogMiddleware[src]

pub fn new(target: &'static str) -> LogMiddleware[src]

Create a new LogMiddleware instance configured to use target.

Trait Implementations

impl<S, RequestBody, ResponseBody> Middleware<S> for LogMiddleware where
    S: Service<Request = Request<RequestBody>, Response = Response<ResponseBody>>,
    S::Error: Error
[src]

type Request = Request<RequestBody>

The wrapped service request type

type Response = Response<ResponseBody>

The wrapped service response type

type Error = S::Error

The wrapped service's error type

type Service = LogService<S>

The wrapped service

fn chain<T>(self, middleware: T) -> Chain<Self, T> where
    T: Middleware<Self::Service>,
    Self: Sized
[src]

Return a new Middleware instance that applies both self and middleware to services being wrapped. Read more

impl Debug for LogMiddleware[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Same for T

type Output = T

Should always be Self

impl<T> Erased for T