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

#[derive(Clone, Debug, Deserialize)]
pub struct GReaderError {
    pub errors: Vec<String>,
}

impl PartialEq for GReaderError {
    fn eq(&self, other: &GReaderError) -> bool {
        self.errors == other.errors
    }
}

impl Eq for GReaderError {}