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
54
/// Helper macros and other junk for internal use only

#[doc(hidden)]
#[macro_export]
macro_rules! set_endpoint {
    { $A:ty, $B:tt, $C:literal } => {
impl crate::Endpoint for $A {
    type ResourceListKind = $B<$A>;

    const ENDPOINT: &'static str = $C;

    fn list(offset: usize, limit: usize) -> Result<Self::ResourceListKind, ::minreq::Error> {
        crate::cache::get_resource(&format!("{}/?offset={}&limit={}", Self::ENDPOINT, offset, limit))?.json::<Self::ResourceListKind>()
    }

    fn full_list() -> Result<Self::ResourceListKind, ::minreq::Error> {
        crate::cache::get_resource(&format!("{}/?offset=0&limit=9999", Self::ENDPOINT))?.json::<Self::ResourceListKind>()
    }
}
};
}

#[doc(hidden)]
#[macro_export]
macro_rules! impl_id {
    { $A:ty } => {
impl crate::Id for $A {
    fn id(&self) -> i16 {
        self.id
    }
}
};
}

#[doc(hidden)]
#[macro_export]
macro_rules! impl_named {
    { $A:ty } => {
impl crate::Named for $A {
    fn name(&self) -> &String {
        &self.name
    }
}
};
}

#[doc(hidden)]
#[macro_export]
macro_rules! impl_id_and_named {
    { $A:ty } => {
crate::impl_named!{$A}
crate::impl_id!{$A}
};
}