teo-teon 0.0.58-alpha.2

Teo object notation.
Documentation
1
2
3
4
5
6
7
8
use super::value::Value;

#[derive(Debug, Clone, PartialEq)]
pub struct TeonRange {
    pub closed: bool,
    pub start: Box<Value>,
    pub end: Box<Value>,
}