mirror of
https://github.com/danbulant/nushell
synced 2026-05-20 21:08:34 +00:00
The `config` command uses different kinds of named arguments, which illustrates how it works.
7 lines
167 B
Rust
7 lines
167 B
Rust
use derive_new::new;
|
|
use serde_derive::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone, Eq, PartialEq, Hash, new)]
|
|
pub enum Type {
|
|
Any,
|
|
}
|