feedbin_api 0.2.0

Rust implementation of the Feedbin REST API
Documentation
use serde_derive::Deserialize;

#[derive(Debug, Deserialize)]
pub struct Icon {
    pub host: String,
    pub url: String,
}

impl Icon {
    pub fn decompose(self) -> (String, String) {
        (self.host, self.url)
    }
}