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
/// # Example (set):
///
/// ```
/// use rustem_proxy::SystemProxy;
/// SystemProxy::set(SystemProxy {
/// is_enabled: true,
/// host: "127.0.0.1".to_string(),
/// port: 61001,
/// bypass: "".to_string(),
/// protocol: rustem_proxy::Protocol::HTTP,
/// });
/// ```
///
/// # Example (get):
///
/// ```
/// use rustem_proxy::SystemProxy;
///
/// let proxy = SystemProxy::get();
/// println!("Is enabled: {}", proxy.is_enabled);
/// println!("host: {}", proxy.host);
/// println!("port: {}", proxy.port);
/// println!("protocol: {:?}", proxy.protocol);
/// ```