just/src/arg_attribute.rs
2025-12-09 16:16:47 -08:00

6 lines
127 B
Rust

use super::*;
pub(crate) struct ArgAttribute<'src> {
pub(crate) name: Token<'src>,
pub(crate) pattern: Option<Pattern>,
}