feedly_api 0.5.0

rust implementation of the feedly REST API
Documentation
mod category;
mod collection;
mod counts;
mod entry;
mod error;
mod profile;
mod search;
mod stream;
mod subscription;
mod tag;
mod token_response;

pub use self::category::Category;
pub use self::collection::Collection;
pub use self::collection::CollectionFeedInput;
pub use self::collection::CollectionInput;
pub use self::counts::Counts;
pub use self::entry::{Content, Entry, Link};
pub use self::error::FeedlyError;
pub use self::profile::Profile;
pub use self::profile::ProfileUpdate;
pub use self::search::{SearchResult, SearchResultItem};
pub use self::stream::Stream;
pub use self::subscription::Subscription;
pub use self::subscription::SubscriptionInput;
pub use self::tag::Tag;
pub use self::token_response::AccessTokenResponse;
pub use self::token_response::RefreshTokenResponse;