coinbase-pro-rs 0.1.2

Coinbase pro client for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::fmt;

// Message
#[derive(Serialize, Deserialize, Debug)]
pub struct Error {
    message: String,
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.message)
    }
}