nushell/src/parser/parse2/flag.rs

8 lines
184 B
Rust
Raw Normal View History

use serde_derive::{Deserialize, Serialize};
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Deserialize, Serialize)]
pub enum Flag {
Shorthand,
Longhand,
}