changes-stream2 0.2.20

couchdb follower
Documentation
use thiserror::Error;

#[derive(Error, Debug)]
pub enum Error {
    #[error("Could not parse the url")]
    InvalidUrl(#[from] url::ParseError),
    #[error("Request failed")]
    RequestFailed(#[from] reqwest::Error),
    #[error("Server answered with non-ok status: {status}. body: {body}")]
    InvalidResponse {
        status: reqwest::StatusCode,
        body: String,
    },
    #[error("Could not parse server response: {json}")]
    ParsingFailed {
        #[source]
        error: serde_json::Error,
        json: String,
    },
}