ulule 0.0.1

API bindings for the Ulule v1 HTTP API
Documentation
1
2
3
4
5
6
7
8
9
10
11
use awc;

#[derive(Debug)]
pub enum Error {
    // A networking error communicating with the Ulule server.
    Http(awc::error::SendRequestError),
    // A set of errors that can occur during parsing payloads.
    Payload(awc::error::JsonPayloadError),
    // An error reading the response body.
    Io(std::io::Error),
}