mangadex_api/v5/user/
history.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
pub mod get;

use crate::HttpClientRef;
use get::GetUserHistoryBuilder;

create_endpoint_node! {
    #[name] HistoryEndpoint HistoryEndpointMethods,
    #[args] {
        http_client: HttpClientRef,
    },
    #[methods] {
        get() -> GetUserHistoryBuilder;
    }
}

impl HistoryEndpointMethods for HistoryEndpoint {
    fn get(&self) -> GetUserHistoryBuilder {
        GetUserHistoryBuilder::default().http_client(self.http_client.clone())
    }
}