[][src]Struct swagger::composites::CompositeService

pub struct CompositeService<U, V, W>(_)
where
    U: GetPath,
    V: NotFound + 'static,
    W: 'static
;

Wraps a vector of pairs, each consisting of a base path as a &'static str and a Service instance.

Trait Implementations

impl<U, V, W> DerefMut for CompositeService<U, V, W> where
    U: GetPath,
    V: NotFound + 'static,
    W: 'static, 
[src]

impl<U, V, W> Debug for CompositeService<U, V, W> where
    U: GetPath,
    V: NotFound + 'static,
    W: 'static, 
[src]

impl<U, V, W> Deref for CompositeService<U, V, W> where
    U: GetPath,
    V: NotFound + 'static,
    W: 'static, 
[src]

The resulting type after dereferencing.

impl<U, V, W> Service for CompositeService<U, V, W> where
    U: GetPath,
    V: NotFound + 'static,
    W: 'static, 
[src]

Requests handled by the service.

Responses given by the service.

Errors produced by the service.

The future response value.

Auto Trait Implementations

impl<U, V, W> !Send for CompositeService<U, V, W>

impl<U, V, W> !Sync for CompositeService<U, V, W>

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
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Connect for T where
    T: Service<Request = Uri, Error = Error> + 'static,
    <T as Service>::Response: AsyncRead,
    <T as Service>::Response: AsyncWrite,
    <T as Service>::Future: Future,
    <<T as Service>::Future as Future>::Error == Error
[src]

The connected Io Stream.

A Future that will resolve to the connected Stream.