Struct jsonrpc_client_transports::RawClient [−][src]
pub struct RawClient(_);
Client for raw JSON RPC requests
Implementations
impl RawClient
[src]
impl RawClient
[src]pub fn call_method(
&self,
method: &str,
params: Params
) -> impl Future<Item = Value, Error = RpcError>
[src]
&self,
method: &str,
params: Params
) -> impl Future<Item = Value, Error = RpcError>
Call RPC method with raw JSON.
pub fn notify(
&self,
method: &str,
params: Params
) -> impl Future<Item = (), Error = RpcError>
[src]
&self,
method: &str,
params: Params
) -> impl Future<Item = (), Error = RpcError>
Send RPC notification with raw JSON.
pub fn subscribe(
&self,
subscribe: &str,
subscribe_params: Params,
notification: &str,
unsubscribe: &str
) -> impl Future<Item = SubscriptionStream, Error = RpcError>
[src]
&self,
subscribe: &str,
subscribe_params: Params,
notification: &str,
unsubscribe: &str
) -> impl Future<Item = SubscriptionStream, Error = RpcError>
Subscribe to topic with raw JSON.
Trait Implementations
impl From<RpcChannel> for RawClient
[src]
impl From<RpcChannel> for RawClient
[src]