mangadex-api 4.2.1

SDK for the MangaDex API
Documentation
use crate::HttpClientRef;

pub mod get;

use self::get::GetMangaStatisticsBuilder;
use uuid::Uuid;

/// Statistics endpoint handler builder.
#[derive(Clone, Debug)]
pub struct IdEndpoint {
    http_client: HttpClientRef,
    id: Uuid,
}

impl IdEndpoint {
    #[doc(hidden)]
    pub(crate) fn new(http_client: HttpClientRef, id: Uuid) -> Self {
        Self { http_client, id }
    }
    pub fn get(&self) -> GetMangaStatisticsBuilder {
        GetMangaStatisticsBuilder::default()
            .manga_id(self.id)
            .http_client(self.http_client.clone())
    }
}