8 lines
133 B
Rust
8 lines
133 B
Rust
|
use crate::parse::Stmt;
|
||
|
|
||
|
#[derive(Debug, Clone)]
|
||
|
pub(crate) struct SupportsRule {
|
||
|
pub params: String,
|
||
|
pub body: Vec<Stmt>,
|
||
|
}
|