pub type AppState = Value;
enum AppState { String(String), Integer(i64), Float(f64), Boolean(bool), Datetime(Datetime), Array(Vec<Value>), Table(Map<String, Value>), }
Represents a TOML string
Represents a TOML integer
Represents a TOML float
Represents a TOML boolean
Represents a TOML datetime
Represents a TOML array
Represents a TOML table