mirror of
https://github.com/casey/just.git
synced 2025-12-23 11:37:29 +00:00
6 lines
127 B
Rust
6 lines
127 B
Rust
use super::*;
|
|
|
|
pub(crate) struct ArgAttribute<'src> {
|
|
pub(crate) name: Token<'src>,
|
|
pub(crate) pattern: Option<Pattern>,
|
|
}
|