rat_quickdns 0.2.4

A high-performance, feature-rich DNS client library with support for multiple transport protocols, load balancing, caching, and filtering
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! 严格配置模块 - 移除所有兜底默认值
//! 
//! 这个模块实现了严格的配置验证,强制用户明确指定所有配置参数,
//! 不提供任何"贴心"的默认值或自动修复功能。

pub mod strict;

pub use strict::{
    StrictDnsConfig,
    StrictConfigBuilder,
    ConfigError,
};