I'm using following iteration to handle the feed:
for item in Channel::read_from(&reqwest::blocking::get(source)?.bytes()?[..])?.items() {
Can I sort it by pub_date ASC/DESC instead of order by members in the original response?
And also, is any build-in features to parse the date, as currently using DateTime::parse_from_rfc2822