[][src]Struct tide::Server

pub struct Server<AppData> { /* fields omitted */ }

An instantiated Tide server.

This type is useful only in conjunction with the HttpService trait, i.e. for hosting a Tide app within some custom HTTP server.

Trait Implementations

impl<AppData: Clone> Clone for Server<AppData>[src]

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

Performs copy-assignment from source. Read more

impl<AppData: Sync + Send + 'static> HttpService for Server<AppData>[src]

type Connection = ()

An individual connection. Read more

type ConnectionFuture = Ready<Result<(), Error>>

A future for setting up an individual connection. Read more

type Fut = BoxFuture<'static, Result<Response, Error>>

The async computation for producing the response. Read more

Auto Trait Implementations

impl<AppData> Send for Server<AppData> where
    AppData: Send + Sync

impl<AppData> Sync for Server<AppData> where
    AppData: Send + Sync

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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, 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> Borrow for T where
    T: ?Sized
[src]

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

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

impl<F, Fut> HttpService for F where
    F: Send + Sync + 'static + Fn(Request<Body>) -> Fut,
    Fut: Send + 'static + TryFuture<Ok = Response<Body>>,
    <Fut as TryFuture>::Error: Send
[src]

type Connection = ()

An individual connection. Read more

type ConnectionFuture = Ready<Result<(), <Fut as TryFuture>::Error>>

A future for setting up an individual connection. Read more

type Fut = Fut

The async computation for producing the response. Read more