pub type Assignment<'src> = Binding<'src, Expression<'src>>;
Expand description
An assignment, e.g foo := bar
Aliased Type§
struct Assignment<'src> {
pub constant: bool,
pub export: bool,
pub file_depth: u32,
pub name: Name<'src>,
pub private: bool,
pub value: Expression<'src>,
}
Fields§
§constant: bool
§export: bool
§file_depth: u32
§name: Name<'src>
§private: bool
§value: Expression<'src>