pub trait AstPayload: Debug {
type LoadPayload: Debug + Clone;
type IdentPayload: Debug + Clone;
type IdentAssignPayload: Debug + Clone;
type DefPayload: Debug + Clone;
type TypeExprPayload: Debug + Clone;
}Expand description
Payload types attached to AST nodes.