[][src]Struct carapax::prelude::WebhookService

pub struct WebhookService<H> { /* fields omitted */ }

Webhook service

Trait Implementations

impl<H> Service for WebhookService<H> where
    H: UpdateHandler + Send + Sync + '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 = Error, Item = Response<Body>> + '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

Auto Trait Implementations

impl<H> Send for WebhookService<H> where
    H: Send

impl<H> Sync for WebhookService<H> where
    H: Send

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<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