[][src]Struct tide::Server

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

Trait Implementations

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

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

Performs copy-assignment from source. Read more

impl<Data> HttpService for Server<Data> where
    Data: Clone + Send + Sync + 'static, 
[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 = FutureObj<'static, Result<Response, Error>>

The async computation for producing the response. Read more

Auto Trait Implementations

impl<Data> Send for Server<Data> where
    Data: Send

impl<Data> Sync for Server<Data> where
    Data: Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

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

type Owned = T

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

type Error = !

🔬 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> 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

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

The type returned in the event of a conversion error.

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