nushell/src/object/types.rs

6 lines
57 B
Rust
Raw Normal View History

2019-05-10 18:59:12 +02:00
pub trait Type {}
pub struct Any;
impl Type for Any {}