[−][src]Struct conduit_hyper::Service
Serve a conduit::Handler on a thread pool
Methods
impl<H: Handler> Service<H>[src]
pub fn new(handler: H, threads: usize) -> Service<H>[src]
Create a multi-threaded Service from a Handler
pub fn run(&self, addr: SocketAddr)[src]
Run the Service bound to a given SocketAddr
Trait Implementations
impl<H> Clone for Service<H>[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<H: Debug> Debug for Service<H>[src]
impl<H: Handler> Service for Service<H>[src]
type ReqBody = Body
The Payload body of the http::Request.
type ResBody = Body
The Payload body of the http::Response.
type Error = Error
The error type that can occur within this Service. Read more
type Future = Box<dyn Future<Item = Response<Self::ResBody>, Error = Self::Error> + Send>
The Future returned by this Service.
fn call(&mut self, request: Request<Self::ReqBody>) -> Self::Future[src]
Returns a future which buffers the response body and then calls the conduit handler from a thread pool
impl<H: Handler> NewService for Service<H>[src]
type ReqBody = Body
The Payload body of the http::Request.
type ResBody = Body
The Payload body of the http::Response.
type Error = Error
The error type that can be returned by Services.
type Service = Service<H>
The resolved Service from new_service().
type Future = Box<dyn Future<Item = Self::Service, Error = Self::InitError> + Send>
The future returned from new_service of a Service.
type InitError = Error
The error type that can be returned when creating a new Service.
fn new_service(&self) -> Self::Future[src]
Auto Trait Implementations
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> From for T[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
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> 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, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
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> Erased for T
impl<N, Ctx> MakeService for N where
N: NewService, [src]
N: NewService,
type ReqBody = <N as NewService>::ReqBody
The Payload body of the http::Request.
type ResBody = <N as NewService>::ResBody
The Payload body of the http::Response.
type Error = <N as NewService>::Error
The error type that can be returned by Services.
type Service = <N as NewService>::Service
The resolved Service from new_service().
type Future = <N as NewService>::Future
The future returned from new_service of a Service.
type MakeError = <N as NewService>::InitError
The error type that can be returned when creating a new Service.
fn make_service(&mut self, Ctx) -> <N as MakeService<Ctx>>::Future[src]
impl<F, R, S> NewService for F where
F: Fn() -> R,
R: IntoFuture<Item = S>,
S: Service,
<R as IntoFuture>::Error: Into<Box<dyn Error + 'static + Send + Sync>>, [src]
F: Fn() -> R,
R: IntoFuture<Item = S>,
S: Service,
<R as IntoFuture>::Error: Into<Box<dyn Error + 'static + Send + Sync>>,
type ReqBody = <S as Service>::ReqBody
The Payload body of the http::Request.
type ResBody = <S as Service>::ResBody
The Payload body of the http::Response.
type Error = <S as Service>::Error
The error type that can be returned by Services.
type Service = S
The resolved Service from new_service().
type Future = <R as IntoFuture>::Future
The future returned from new_service of a Service.
type InitError = <R as IntoFuture>::Error
The error type that can be returned when creating a new Service.