mirror of
https://github.com/nushell/nushell.git
synced 2025-04-29 23:54:26 +02:00
8 lines
151 B
Rust
8 lines
151 B
Rust
use crate::{BlockId, Signature};
|
|
|
|
#[derive(Clone, Debug)]
|
|
pub struct Declaration {
|
|
pub signature: Box<Signature>,
|
|
pub body: Option<BlockId>,
|
|
}
|