codecov 0.4.1

Codecov API client for Rust
Documentation
1
2
3
4
5
6
7
8
9
/**
 * Error is an enum wrapping all possible errors.
 */
#[derive(Debug)]
pub enum Error {
    ReqwestError(reqwest::Error),
    EnvError(std::env::VarError),
    DeserializeError(serde_json::Error),
}