Module toy_rpc::server[][src]

Expand description

RPC server. There is only one Server defined, but some methods have different implementations depending on the runtime feature flag

Modules

async_std

This modules implements Server’s methods that require feature = "async_std_runtime" or feature = "http_tide".

builder

Builder of the Server

http_actix_webhttp_actix_web

Implements integration with actix_web

http_tidehttp_tide

This module implements integration with tide.

http_warphttp_warp

This module implements integration with warp.

tokio

This modules implements Server’s methods that require feature = "tokio_runtime", feature = "http_actix_web" or feature = "http_warp".

Structs

Server

RPC Server