goldrust 0.1.10

A Rust library for testing HTTP clients with golden files.
Documentation
1
2
3
4
5
6
7
8
9
10
#[derive(thiserror::Error, Debug)]
pub enum GoldrustError {
    #[cfg(feature = "image")]
    #[error("Image error: {0}")]
    Image(#[from] image::ImageError),
    #[error("IO error: {0}")]
    Io(#[from] std::io::Error),
    #[error("SerdeJson error: {0}")]
    SerdeJson(#[from] serde_json::Error),
}