rpkl 0.8.0

Bindings and codegen for Apple's Pkl configuration language
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::internal::ObjectMember;

#[derive(Debug, Clone)]
pub struct StructNodeRef<'a> {
    pub _pkl_ident: &'a str,
    pub members: &'a [ObjectMember],
    pub is_dependency: bool,
    pub parent_module_name: &'a str,
    pub pub_struct: bool,
}