mangadex_api/v5/author/
id.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
pub mod delete;
pub mod get;
pub mod put;

use uuid::Uuid;

use crate::HttpClientRef;

use delete::DeleteAuthorBuilder;
use get::GetAuthorBuilder;
use put::UpdateAuthorBuilder;

#[derive(Debug, Clone)]
pub struct IdEndpoint {
    http_client: HttpClientRef,
    id: Uuid,
}

impl IdEndpoint {
    #[doc(hidden)]
    pub fn new(http_client: HttpClientRef, id: Uuid) -> Self {
        Self { http_client, id }
    }

    pub fn get(&self) -> GetAuthorBuilder {
        GetAuthorBuilder::default()
            .author_id(self.id)
            .http_client(self.http_client.clone())
    }
    pub fn delete(&self) -> DeleteAuthorBuilder {
        DeleteAuthorBuilder::default()
            .author_id(self.id)
            .http_client(self.http_client.clone())
    }
    pub fn put(&self) -> UpdateAuthorBuilder {
        UpdateAuthorBuilder::default()
            .author_id(self.id)
            .http_client(self.http_client.clone())
    }
}