| 97 | /// Function parameter |
| 98 | #[derive(Debug, Clone, PartialEq)] |
| 99 | pub struct Param { |
| 100 | pub span: Span, |
| 101 | pub names: Vec<Ident>, |
| 102 | pub type_: Option<Box<Expr>>, |
| 103 | pub implicit: bool, |
| 104 | } |
| 105 | |
| 106 | /// Identifier |
| 107 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |