zabbix_api/
lib.rs

1pub mod client;
2
3#[cfg(feature = "host")]
4pub mod host;
5
6#[cfg(feature = "host")]
7pub mod hostgroup;
8
9#[cfg(feature = "item")]
10pub mod item;
11
12#[cfg(feature = "trigger")]
13pub mod trigger;
14
15#[cfg(feature = "webscenario")]
16pub mod webscenario;
17
18pub mod template;
19
20pub mod r#macro;
21
22#[cfg(feature = "user")]
23pub mod usergroup;
24
25#[cfg(feature = "user")]
26pub mod user;
27
28pub mod error;
29
30pub const ZABBIX_EXTEND_PROPERTY_VALUE: &str = "extend";
31
32#[cfg(test)]
33mod tests;