shadowplay 0.16.3

Utility for checking puppet syntax, a puppet manifest linter, a pretty printer, and a utility for exploring the Hiera.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use serde::Serialize;

#[derive(Clone, Debug, PartialEq, Serialize)]
pub struct LowerIdentifier<EXTRA> {
    pub name: Vec<String>,
    pub is_toplevel: bool,
    pub extra: EXTRA,
}

#[derive(Clone, Debug, PartialEq, Serialize)]
pub struct CamelIdentifier<EXTRA> {
    pub name: Vec<String>,
    pub extra: EXTRA,
}