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
use serde::Deserialize;

#[derive(Clone, Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Unread {
    pub max: u64,
    pub unreadcounts: Vec<UnreadFeed>,
}

#[derive(Clone, Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct UnreadFeed {
    pub count: u64,
    pub id: String,
    pub newest_item_timestamp_usec: String,
}