8 lines
182 B
Rust
8 lines
182 B
Rust
|
|
//! Using policy (roots/search paths and toggles) — skeleton
|
||
|
|
|
||
|
|
#[derive(Debug, Clone, Default)]
|
||
|
|
pub struct UsingPolicy {
|
||
|
|
pub search_paths: Vec<String>, // from [using.paths]
|
||
|
|
}
|
||
|
|
|