Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Arti
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Core
Arti
Commits
1ee2be9d
Commit
1ee2be9d
authored
2 years ago
by
Ian Jackson
Browse files
Options
Downloads
Patches
Plain Diff
tor-config: docs: add more docs about load, esp. traits
parent
337b4a72
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!529
Break TorClientConfig out of ArtiConfig and warn on unknown config keys
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
crates/tor-config/src/load.rs
+23
-0
23 additions, 0 deletions
crates/tor-config/src/load.rs
with
23 additions
and
0 deletions
crates/tor-config/src/load.rs
+
23
−
0
View file @
1ee2be9d
...
...
@@ -10,6 +10,20 @@
//! This is step 3 of the overall config processing,
//! as described in the [crate-level documentation](crate).
//!
//! # Starting points
//!
//! To use this, you will need to:
//!
//! * `#[derive(Builder)]` and [`impl_standard_builder`]
//! for all of your configuration structures,
//! using `#[sub_builder]` etc. sa appropriate,
//! and making your builders [`Deserialize`](serde::Deserialize).
//!
//! * [`impl TopLevel`](TopLevel) for your *top level* structures (only).
//!
//! * Call [`resolve`] (or one of its variants) with a `config::Config`,
//! to obtain your top-level configuration(s).
//!
//! # Example
//!
//! ```
...
...
@@ -119,6 +133,11 @@ pub trait Resolvable: Sized {
///
/// Implementing this trait only for top-level configurations,
/// which are to be parsed at the root level of a (TOML) config file taxonomy.
///
/// This trait exists to:
///
/// * Mark the toplevel configuration structures as suitable for use with [`resolve`]
/// * Provide the type of the `Builder` for use by Rust generic code
pub
trait
TopLevel
{
/// The `Builder` which can be used to make a `Self`
///
...
...
@@ -126,6 +145,10 @@ pub trait TopLevel {
type
Builder
:
DeserializeOwned
;
}
/// `impl Resolvable for (A,B..) where A: Resolvable, B: Resolvable ...`
///
/// The implementation simply calls `Resolvable::resolve` for each output tuple member.
///
/// `define_for_tuples!{ A B - C D.. }`
///
/// expands to
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment