anilist_moe 0.4.0

Anilist_Moe is a Rust Wrapper for the Anilist API. This library allows you to seamlessly interact with Anilist's Public API with and without authentication. This currently supports Anime, Manga, Users, Staff, Forum, Threads, Recommendations, Reviews and User Activities
Documentation
//! Enumeration types for AniList API.
//!
//! This module contains all enum definitions used throughout the API,
//! including media types, status values, sorting options, and more.

/// Activity-related enums
pub mod activity;
/// Airing-related enums
pub mod airing;
/// Character-related enums
pub mod character;
/// External link enums
pub mod external_link;
/// Likable entity enums
pub mod likable;
/// Media (anime/manga) enums
pub mod media;
/// Media list enums
pub mod media_list;
/// Moderator-related enums
pub mod mods;
/// Notification enums
pub mod notification;
/// Recommendation enums
pub mod recommendation;
/// Review enums
pub mod review;
/// Revision enums
pub mod revision;
/// Score format enums
pub mod score;
/// Site-wide enums
pub mod site;
/// Staff-related enums
pub mod staff;
/// Studio-related enums
pub mod studio;
/// Submission enums
pub mod submission;
/// Thread/forum enums
pub mod thread;
/// User-related enums
pub mod user;