coins-rs 0.1.1

Currency calculations for rust
Documentation

#[derive(Clone, Debug,)]
pub enum Error {
  CurrencyMismatch,
  CouldNotGetExchangeRate
}

impl std::convert::From<reqwest::Error> for Error {
  fn from(_err: reqwest::Error) -> Error {
    Error::CouldNotGetExchangeRate
  }
}