[][src]Struct tower_web::routing::Unit

pub struct Unit<B> { /* fields omitted */ }

A resource with no methods.

Attempting to route to this resource will result in a 404 response.

Methods

impl<B> Unit<B>[src]

pub fn new() -> Self[src]

Create a new Unit instance.

Trait Implementations

impl<B> Resource for Unit<B> where
    B: BufStream
[src]

type Destination = ()

Token mapping a route to a resource method.

type RequestBody = B

The HTTP request body type.

type Buf = <Self::Body as BufStream>::Item

Buffer type yielded by the response body.

type Body = Map<String>

The HTTP response body type. Read more

type Future = FutureResult<Response<Self::Body>, Error>

Response future

impl<B> Clone for Unit<B>[src]

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

Performs copy-assignment from source. Read more

impl<B: Debug> Debug for Unit<B>[src]

Auto Trait Implementations

impl<B> Send for Unit<B> where
    B: Send

impl<B> Sync for Unit<B> where
    B: Sync

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