rsreddit 0.1.3

Lightweight Reddit API wrapper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[allow(non_camel_case_types)]
#[derive(PartialEq, Debug, Clone)]
pub enum SortTime {
    hour,
    day,
    week,
    month,
    year,
    all,
}
impl std::fmt::Display for SortTime {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        write!(f, "{:?}", self)
    }
}