Struct jsonrpc_http_server::ServerHandler [−][src]
pub struct ServerHandler<M: Metadata = (), S: Middleware<M> = Noop> { /* fields omitted */ }
jsonrpc http request handler.
Implementations
impl<M: Metadata, S: Middleware<M>> ServerHandler<M, S>
[src]
impl<M: Metadata, S: Middleware<M>> ServerHandler<M, S>
[src]pub fn new(
jsonrpc_handler: WeakRpc<M, S>,
cors_domains: Option<Vec<AccessControlAllowOrigin>>,
cors_max_age: Option<u32>,
cors_allowed_headers: AccessControlAllowHeaders,
allowed_hosts: Option<Vec<Host>>,
middleware: Arc<dyn RequestMiddleware>,
rest_api: RestApi,
health_api: Option<(String, String)>,
max_request_body_size: usize,
keep_alive: bool
) -> Self
[src]
jsonrpc_handler: WeakRpc<M, S>,
cors_domains: Option<Vec<AccessControlAllowOrigin>>,
cors_max_age: Option<u32>,
cors_allowed_headers: AccessControlAllowHeaders,
allowed_hosts: Option<Vec<Host>>,
middleware: Arc<dyn RequestMiddleware>,
rest_api: RestApi,
health_api: Option<(String, String)>,
max_request_body_size: usize,
keep_alive: bool
) -> Self
Create new request handler.
Trait Implementations
impl<M: Metadata, S: Middleware<M>> Service for ServerHandler<M, S>
[src]
impl<M: Metadata, S: Middleware<M>> Service for ServerHandler<M, S>
[src]type ReqBody = Body
The Payload
body of the http::Request
.
type ResBody = Body
The Payload
body of the http::Response
.
type Error = Error
The error type that can occur within this Service
. Read more
type Future = Handler<M, S>
The Future
returned by this Service
.