[][src]Struct solana_jsonrpc_http_server::ServerHandler

pub struct ServerHandler<M: Metadata = (), S: Middleware<M> = Noop> { /* fields omitted */ }

jsonrpc http request handler.

Methods

impl<M: Metadata, S: Middleware<M>> ServerHandler<M, S>
[src]

Create new request handler.

Trait Implementations

impl<M: Metadata, S: Middleware<M>> Service for ServerHandler<M, S>
[src]

The Payload body of the http::Request.

The Payload body of the http::Response.

The error type that can occur within this Service. Read more

The Future returned by this Service.

Auto Trait Implementations

impl<M, S> Send for ServerHandler<M, S>

impl<M, S> Sync for ServerHandler<M, S>

Blanket Implementations

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

impl<T> From for T
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

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]

🔬 This is a nightly-only experimental API. (try_from)

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