[−][src]Struct interledger_http::HttpServerService
A Hyper::Service that parses incoming ILP-Over-HTTP requests, validates the authorization, and passes the request to an IncomingService handler.
Methods
impl<S, T> HttpServerService<S, T> where
S: IncomingService<T::Account> + Clone + 'static,
T: HttpStore, [src]
S: IncomingService<T::Account> + Clone + 'static,
T: HttpStore,
Trait Implementations
impl<S: Clone, T: Clone> Clone for HttpServerService<S, T>[src]
fn clone(&self) -> HttpServerService<S, T>[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<S, T> Service for HttpServerService<S, T> where
S: IncomingService<T::Account> + Clone + Send + 'static,
T: HttpStore + 'static, [src]
S: IncomingService<T::Account> + Clone + Send + 'static,
T: HttpStore + 'static,
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 + 'static>
The Future returned by this Service.
fn call(&mut self, request: Request<Self::ReqBody>) -> Self::Future[src]
fn poll_ready(&mut self) -> Result<Async<()>, Self::Error>[src]
Returns Ready when the service is able to process requests. Read more
Auto Trait Implementations
impl<S, T> Send for HttpServerService<S, T> where
S: Send,
T: Send,
S: Send,
T: Send,
impl<S, T> Sync for HttpServerService<S, T> where
S: Sync,
T: Sync,
S: Sync,
T: Sync,
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T> From for T[src]
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
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> 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
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,