csm-rs 0.43.23

A library for Shasta
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error("ERROR - CFS Configuration already exists: {0}")]
    ConfigurationAlreadyExistsError(String),
    #[error("ERROR - CFS Configuration network: {0}")]
    NetError(#[from] reqwest::Error),
    #[error("ERROR - CSM Configuration: {0}")]
    JsonError(serde_json::Value),
    #[error("ERROR - CSM Configuration: {0}")]
    TextError(String),
    #[error("ERROR - CFS Configuration message: {0}")]
    MessageError(String),
}