toasty_core/schema/app/
arg.rs

1use crate::stmt;
2
3#[derive(Debug, Clone)]
4pub struct Arg {
5    /// Argument name
6    pub name: String,
7
8    /// Argument type
9    pub ty: stmt::Type,
10}