dkernel_card/
content.rs

1use types::Type;
2
3#[derive(Clone, Debug, PartialEq)]
4pub enum Content {
5    String(String),
6    Integer(u64),
7    Rational(u64, u64),
8    Float(f64),
9    Apply(Type),
10}
11
12// Content::Float should not be NaN
13impl Eq for Content {}