| 89 | /// Structure field |
| 90 | #[derive(Debug, Clone, PartialEq)] |
| 91 | pub struct Field { |
| 92 | pub span: Span, |
| 93 | pub name: Ident, |
| 94 | pub type_: Box<Expr>, |
| 95 | } |
| 96 | |
| 97 | /// Function parameter |
| 98 | #[derive(Debug, Clone, PartialEq)] |
nothing calls this directly
no outgoing calls
no test coverage detected