mangadex 0.1.2

Unofficial asynchronous mangadex API wrapper for rust
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::Serialize;

use super::OrderType;

#[derive(Debug, Serialize, Clone)]
#[serde(rename_all = "camelCase")]
pub enum FeedOrder {
    Volume(OrderType),
    Chapter(OrderType),
}