teamy-figue 2.0.1

Type-safe CLI arguments, config files, and environment variables powered by Facet reflection
Documentation
1
2
3
4
5
6
7
8
9
10
//! Standard path representation for navigating schemas and ConfigValue trees.
//!
//! A `Path` is a thin wrapper over `Vec<String>`, where each segment is a name.
//! Indices are stringified numbers.

use std::string::String;
use std::vec::Vec;

/// A path into a schema or ConfigValue tree.
pub type Path = Vec<String>;