pilota_thrift_parser/descriptor/
include.rs

1use faststr::FastStr;
2
3use super::Literal;
4
5#[derive(Debug)]
6pub struct Include {
7    pub path: Literal,
8    pub leading_comments: FastStr,
9    pub trailing_comments: FastStr,
10}
11
12#[derive(Debug)]
13pub struct CppInclude {
14    pub path: Literal,
15    pub leading_comments: FastStr,
16    pub trailing_comments: FastStr,
17}