Struct json_rpc2::futures::Server[][src]

pub struct Server<'a, T: Send + Sync> { /* fields omitted */ }

Serve requests.

Requests are passed to each service in turn and the first service that returns a response wins.

Only available with the async feature.

Implementations

impl<'a, T: Send + Sync> Server<'a, T>[src]

pub fn new(services: Vec<&'a Box<dyn Service<Data = T>>>) -> Self[src]

Create a new server.

pub async fn serve(&self, request: &mut Request, ctx: &T) -> Option<Response>[src]

Infallible service handler, errors are automatically converted to responses.

If a request was a notification (no id field) this will yield None.

Auto Trait Implementations

impl<'a, T> !RefUnwindSafe for Server<'a, T>

impl<'a, T> Send for Server<'a, T>

impl<'a, T> Sync for Server<'a, T>

impl<'a, T> Unpin for Server<'a, T>

impl<'a, T> !UnwindSafe for Server<'a, T>

Blanket Implementations

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

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,