greader_api 0.6.0

rust implementation of the GoogleReader-API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use serde::Deserialize;

#[derive(Clone, Debug, Deserialize)]
pub struct Tagging {
    pub id: String,
    pub r#type: Option<String>,
    pub sortid: Option<String>,
    #[cfg(feature = "inoreader")]
    pub unread_count: Option<u64>,
    #[cfg(feature = "inoreader")]
    pub unseen_count: Option<u64>,
}

#[derive(Clone, Debug, Deserialize)]
pub struct Taggings {
    pub tags: Vec<Tagging>,
}