[][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 as HttpStore>::Account> + Clone + 'static,
    T: HttpStore
[src]

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

Trait Implementations

impl<S, T> Service for HttpServerService<S, T> where
    S: IncomingService<<T as HttpStore>::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<Error = <HttpServerService<S, T> as Service>::Error, Item = Response<<HttpServerService<S, T> as Service>::ResBody>> + 'static + Send>

The Future returned by this Service.

fn poll_ready(&mut self) -> Result<Async<()>, Self::Error>[src]

Returns Ready when the service is able to process requests. Read more

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

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

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

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

Blanket Implementations

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> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self