interledger-stream 0.2.2-beta.3

Client and server implementations of the STREAM transport protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
use failure::Fail;

#[derive(Fail, Debug)]
pub enum Error {
    #[fail(display = "Error connecting: {}", _0)]
    ConnectionError(String),
    #[fail(display = "Error polling: {}", _0)]
    PollError(String),
    #[fail(display = "Error polling: {}", _0)]
    SendMoneyError(String),
}