libedbo 0.1.0

Rust client library for accessing the EDBO OpenAPI
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug, thiserror::Error)]
pub enum Error {
  #[error("API error: {0}")]
  ApiError(u16),
  #[error("Network error: {0}")]
  NetworkError(#[from] reqwest::Error),
  #[error("Parsing error: {0}")]
  ParsingError(#[from] serde_json::Error),
  #[error("Error: {0}")]
  OtherError(String),
}