[][src]Struct interledger_http::HttpServerService

pub struct HttpServerService<S, T> { /* fields omitted */ }

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]

pub fn new(next: S, store: T) -> Self[src]

pub fn handle_http_request(
    &mut self,
    request: Request<Body>
) -> impl Future<Item = Response<Body>, Error = Error>
[src]

Trait Implementations

impl<S: Clone, T: Clone> Clone for HttpServerService<S, T>[src]

impl<S, T> Service for HttpServerService<S, T> where
    S: IncomingService<T::Account> + Clone + Send + 'static,
    T: HttpStore + 'static, 
[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 + 'static>

The Future returned by this Service.

Auto Trait Implementations

impl<S, T> Unpin for HttpServerService<S, T> where
    S: Unpin,
    T: Unpin

impl<S, T> Sync for HttpServerService<S, T> where
    S: Sync,
    T: Sync

impl<S, T> Send for HttpServerService<S, T> where
    S: Send,
    T: Send

impl<S, T> UnwindSafe for HttpServerService<S, T> where
    S: UnwindSafe,
    T: UnwindSafe

impl<S, T> RefUnwindSafe for HttpServerService<S, T> where
    S: RefUnwindSafe,
    T: RefUnwindSafe

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err