[−][src]Struct tower_web::routing::Unit
A resource with no methods.
Attempting to route to this resource will result in a 404 response.
Methods
impl<B> Unit<B>[src]
Trait Implementations
impl<B> Resource for Unit<B> where
B: BufStream, [src]
B: BufStream,
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
fn dispatch(
&mut self,
_: (),
_: &RouteMatch,
_: Self::RequestBody
) -> Self::Future[src]
&mut self,
_: (),
_: &RouteMatch,
_: Self::RequestBody
) -> Self::Future
impl<B> Clone for Unit<B>[src]
fn clone(&self) -> Self[src]
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
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T> From for T[src]
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Same for T
type Output = T
Should always be Self