dnsync 0.2.2

DNS Sync and Control with MCP
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Describes DNS features supported by a vendor adapter.
#[derive(Debug, Clone, Default, PartialEq, Eq)]
pub struct VendorCapabilities {
    pub zones: bool,
    pub records: bool,
    pub cache: bool,
    pub access_lists: bool,
    pub settings: bool,
    pub zone_import: bool,
    pub zone_export: bool,
    pub logs: bool,
}