ifpaclient 0.1.2

Async Rust client for the IFPA Pinball API
Documentation
1
2
3
4
5
6
7
8
#[derive(thiserror::Error, Debug)]
pub enum IfpaError {
    #[error(transparent)]
    Http(#[from] reqwest::Error),

    #[error("API error ({status}): {message}")]
    Api { status: u16, message: String },
}