mangadex 0.1.2

Unofficial asynchronous mangadex API wrapper for rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use serde::Deserialize;

use crate::FromResponse;

#[derive(Debug, Deserialize, Clone)]
#[serde(rename_all = "camelCase")]
pub struct AtHomeServer {
    pub base_url: String,
}

impl FromResponse for AtHomeServer {
    type Response = Self;

    fn from_response(res: Self::Response) -> Self {
        res
    }
}