Skip to main content

rust_config_tree/config_templates/
target.rs

1use std::path::PathBuf;
2
3/// Generated template content for one output path.
4#[derive(Debug, Clone, PartialEq, Eq)]
5pub struct ConfigTemplateTarget {
6    /// Path that should receive the generated content.
7    pub path: PathBuf,
8    /// Complete template content to write to `path`.
9    pub content: String,
10}