1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub struct Settings {
    // placeholder for future settings
    // TODO review if it makes sense to impl `reconnect_interval`
    pub receiver_channel_bounds : usize,
    pub sender_channel_bounds : usize,
}

impl Default for Settings {
    fn default() -> Self {
        Self {
            receiver_channel_bounds : 0,
            sender_channel_bounds : 0,
        }
    }
}