speedrun-api 1.3.0

A wrapper for the speedrun.com REST API
Documentation
//! # Genres
//!
//! Endpoints available for genres

use std::{borrow::Cow, fmt::Display};

use serde::{Deserialize, Serialize};

use super::{endpoint::Endpoint, error::BodyError, query_params::QueryParams, Direction, Pageable};

/// Sorting options for genre
#[derive(Debug, Serialize, Clone, Copy)]
#[serde(rename_all = "kebab-case")]
pub enum GenresSorting {
    /// Sort alphanumerically by genre name (default)
    Name,
}

/// Represents a genre ID.
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq, Eq, Hash)]
pub struct GenreId<'a>(Cow<'a, str>);

impl<'a> GenreId<'a> {
    /// Create a new [`GenreId`].
    pub fn new<T>(id: T) -> Self
    where
        T: Into<Cow<'a, str>>,
    {
        Self(id.into())
    }
}

impl<'a, T> From<T> for GenreId<'a>
where
    T: Into<Cow<'a, str>>,
{
    fn from(value: T) -> Self {
        Self::new(value)
    }
}

impl Display for GenreId<'_> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", &self.0)
    }
}

/// Retrieves a list of all genres
#[derive(Default, Debug, Builder, Serialize, Clone)]
#[builder(default, setter(into, strip_option))]
#[serde(rename_all = "kebab-case")]
pub struct Genres {
    #[doc = r"Sorting options for results."]
    orderby: Option<GenresSorting>,
    #[doc = r"Sort direction"]
    direction: Option<Direction>,
}

/// Retrieves a single genre identified by ID
#[derive(Debug, Builder, Clone)]
#[builder(setter(into, strip_option))]
pub struct Genre<'a> {
    #[doc = r"`ID` of the genre."]
    id: GenreId<'a>,
}

impl Genres {
    /// Create a builder for this endpoint.
    pub fn builder() -> GenresBuilder {
        GenresBuilder::default()
    }
}

impl Genre<'_> {
    /// Create a builder for this endpoint.
    pub fn builder<'a>() -> GenreBuilder<'a> {
        GenreBuilder::default()
    }
}

impl Default for GenresSorting {
    fn default() -> Self {
        Self::Name
    }
}

impl Endpoint for Genres {
    fn endpoint(&self) -> Cow<'static, str> {
        "/genres".into()
    }

    fn query_parameters(&self) -> Result<QueryParams<'_>, BodyError> {
        QueryParams::with(self)
    }
}

impl Endpoint for Genre<'_> {
    fn endpoint(&self) -> Cow<'static, str> {
        format!("/genres/{}", self.id).into()
    }
}

impl Pageable for Genres {}