1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
pub struct FeedOption {
pub after: Option<String>,
pub before: Option<String>,
pub count: Option<u32>,
}
impl FeedOption {
pub fn new() -> FeedOption {
FeedOption {
after: None,
before: None,
count: None,
}
}
pub fn after(mut self, ty: &str) -> FeedOption {
if !self.before.is_none() {
panic!("Cannot have an after and before param at the same time");
}
self.after = Some(ty.to_owned());
self
}
pub fn before(mut self, ty: &str) -> FeedOption {
if !self.after.is_none() {
panic!("Cannot have an after and before param at the same time");
}
self.before = Some(ty.to_owned());
self
}
pub fn count(mut self, ty: u32) -> FeedOption {
self.count = Some(ty);
self
}
}