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;
use std::collections::HashMap;

#[derive(Clone, Debug, Deserialize)]
pub struct StreamPrefs {
    pub streamprefs: HashMap<String, Vec<StreamPref>>,
}

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