[][src]Trait thruster::ThrusterServer

pub trait ThrusterServer {
    type Context: Context + Send;
    type Response: Send;
    type Request: RequestWithParams + Send;
    fn new(_: App<Self::Request, Self::Context>) -> Self;
fn build<'life0, 'async_trait>(
        self,
        host: &'life0 str,
        port: u16
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn start(self, host: &str, port: u16)
    where
        Self: Sized
, { ... } }

Associated Types

Loading content...

Required methods

fn new(_: App<Self::Request, Self::Context>) -> Self

fn build<'life0, 'async_trait>(
    self,
    host: &'life0 str,
    port: u16
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Loading content...

Provided methods

fn start(self, host: &str, port: u16) where
    Self: Sized

Loading content...

Implementors

impl<T: Context<Response = Response> + Send> ThrusterServer for Server<T>[src]

type Context = T

type Response = Response

type Request = Request

Loading content...