[][src]Trait thruster::ThrusterServer

pub trait ThrusterServer {
    type Context: Context + Send;
    type Response: Send;
    type Request: RequestWithParams + Send;
    type State: Send;
    fn new(_: App<Self::Request, Self::Context, Self::State>) -> Self;
#[must_use] 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::State>) -> Self

#[must_use]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, S: 'static + Send + Sync> ThrusterServer for Server<T, S>[src]

type Context = T

type Response = Response

type Request = Request

type State = S

Loading content...