[][src]Struct tower_web::middleware::Identity

pub struct Identity { /* fields omitted */ }

A no-op middleware.

When wrapping a Service, the Identity middleware returns the provided service without modifying it.

Methods

impl Identity[src]

pub fn new() -> Identity[src]

Create a new Identity value

Trait Implementations

impl<S: Service> Middleware<S> for Identity[src]

Decorates a Service, transforming either the request or the response.

type Request = S::Request

The wrapped service request type

type Response = S::Response

The wrapped service response type

type Error = S::Error

The wrapped service's error type

type Service = 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<T> Chain<T> for Identity[src]

type Output = Chain<Self, T>

The combined type

impl Clone for Identity[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Identity[src]

impl Debug for Identity[src]

Auto Trait Implementations

impl Send for Identity

impl Sync for Identity

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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