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

#[derive(Clone, Debug, Deserialize)]
pub struct ItemId {
    pub id: String,
}

#[derive(Clone, Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ItemRefs {
    pub item_refs: Option<Vec<ItemId>>,
    pub continuation: Option<String>,
}