Crate rss [−] [src]
A fast RSS feed parser.
Reading
Reading can be done using any object that implements the BufRead trait.
Example
use std::fs::File; use std::io::BufReader; use rss::Channel; let file = File::open("example.xml").unwrap(); let reader = BufReader::new(file); let channel = Channel::read_from(reader).unwrap();
Reexports
pub use extension::Extension; |
Modules
| extension |
Types and functions for namespaced extensions. |
Structs
| Category |
A representation of the |
| Channel |
A representation of the |
| Cloud |
A representation of the |
| Enclosure |
A representation of the |
| Guid |
A representation of the |
| Image |
A representation of the |
| Item |
A representation of the |
| Source |
A representation of the |
| TextInput |
A representation of the |
Enums
| Error |
Types of errors that could occur while parsing an RSS feed. |