Trait wasmcloud_interface_httpserver::HttpServer[][src]

pub trait HttpServer {
    fn handle_request<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        ctx: &'life1 Context,
        arg: &'life2 HttpRequest
    ) -> Pin<Box<dyn Future<Output = RpcResult<HttpResponse>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        Self: 'async_trait
; fn contract_id() -> &'static str { ... } }
Expand description

HttpServer is the contract to be implemented by actor wasmbus.contractId: wasmcloud:httpserver wasmbus.actorReceive

Required methods

Provided methods

returns the capability contract id for this interface

Implementors