bililivex 0.1.0

service Bilibili open-live SDK by Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

#[derive(Error, Debug)]
pub enum ServiceError {
    #[error("unknown error")]
    Unknown,
    #[error("Reqwest error")]
    ReqwestError(#[from] reqwest::Error),
    #[error("API Deserialize error")]
    APIDeserializeError(#[from] serde_json::Error),
}