smart_config/_docs/
mod.rs

1//! # Additional library documentation
2//!
3//! This module and submodules contains additional docs on how to use the `smart-config` library.
4//!
5//! 1. [Derive macros reference](derive_ref)
6//! 2. [Derive macro examples](derive_examples)
7//! 3. [Combining configuration sources](sources)
8//!
9//! # Links to "main" documentation
10//!
11//! For completeness, here are some advanced topics documented in the corresponding modules of the library:
12//!
13//! - [Deserialization overview](crate::de)
14//! - [Config validation](crate::validation)
15//! - [Parameter fallbacks](crate::fallback)
16//! - [String pattern matching](crate::pat)
17//! - [Testing configurations](crate::testing)
18
19pub mod derive_examples;
20pub mod derive_ref;
21pub mod sources;