greader_api 0.6.0

rust implementation of the GoogleReader-API
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::Deserialize;

#[derive(Clone, Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct User {
    pub user_id: String,
    pub user_name: String,
    pub user_profile_id: String,
    pub user_email: String,
}