mirror of
https://github.com/nushell/nushell.git
synced 2025-01-21 05:40:59 +01:00
8 lines
184 B
Rust
8 lines
184 B
Rust
|
use serde_derive::{Deserialize, Serialize};
|
||
|
|
||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Deserialize, Serialize)]
|
||
|
pub enum Flag {
|
||
|
Shorthand,
|
||
|
Longhand,
|
||
|
}
|