protospec_build/ast/
field.rs

1use super::*;
2
3#[derive(Clone, Serialize, Deserialize)]
4pub struct Field {
5    pub type_: Type,
6    pub flags: Vec<Ident>,
7    pub condition: Option<Box<Expression>>,
8    pub transforms: Vec<Transform>,
9    pub span: Span,
10}
11impl_node!(Field);