[][src]Struct conduit_hyper::Server

pub struct Server;

A builder for a hyper::Server (behind an opaque impl Future).

Methods

impl Server[src]

pub fn bind<H: Handler>(addr: &SocketAddr, handler: H) -> impl Future[src]

Bind a handler to an address.

This returns an opaque impl Future so while it can be directly spawned on a tokio::Runtime it is not possible to furter configure the hyper::Server. If more control, such as configuring a graceful shutdown is necessary, then call Service::from_conduit instead.

Trait Implementations

impl Debug for Server[src]

Auto Trait Implementations

impl Send for Server

impl Sync for Server

impl Unpin for Server

impl UnwindSafe for Server

impl RefUnwindSafe for Server

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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