jsonrpc-sdk-client 0.1.4

A simple JSON-RPC client.
Documentation
// Copyright (C) 2019 Boyu Yang
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

macro_rules! normal_error {
    ($expr:expr) => {{
        $expr
    }};
}

macro_rules! future_error {
    ($expr:expr) => {{
        match $expr {
            Ok(result) => future::ok(result),
            Err(error) => future::err(error),
        }
    }};
}