nushell/crates/nu-protocol/src/ty.rs

47 lines
1.3 KiB
Rust
Raw Normal View History

2021-09-02 03:29:43 +02:00
use std::fmt::Display;
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum Type {
Int,
Float,
Range,
2021-09-02 03:29:43 +02:00
Bool,
String,
Block,
ColumnPath,
Duration,
FilePath,
Filesize,
List(Box<Type>),
Number,
Nothing,
Table,
2021-09-04 08:52:28 +02:00
RowStream,
ValueStream,
2021-09-02 03:29:43 +02:00
Unknown,
}
impl Display for Type {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Type::Block => write!(f, "block"),
Type::Bool => write!(f, "bool"),
Type::ColumnPath => write!(f, "column path"),
Type::Duration => write!(f, "duration"),
Type::FilePath => write!(f, "filepath"),
Type::Filesize => write!(f, "filesize"),
Type::Float => write!(f, "float"),
Type::Int => write!(f, "int"),
Type::Range => write!(f, "range"),
2021-09-02 03:29:43 +02:00
Type::List(l) => write!(f, "list<{}>", l),
Type::Nothing => write!(f, "nothing"),
Type::Number => write!(f, "number"),
Type::String => write!(f, "string"),
Type::Table => write!(f, "table"),
2021-09-04 08:52:28 +02:00
Type::ValueStream => write!(f, "value stream"),
Type::RowStream => write!(f, "row stream"),
2021-09-02 03:29:43 +02:00
Type::Unknown => write!(f, "unknown"),
}
}
}