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
1
2
3
4
5
6
7
8
9
10
11
//! Union types for AniList API.
//!
//! This module contains union types that can represent multiple possible entity types,
//! such as different activity types or notification types.

/// Activity union (TextActivity, MessageActivity, ListActivity)
pub mod activity;
/// Likeable entity union
pub mod likeable;
/// Notification union (various notification types)
pub mod notification;