Enum statechart::Value [] [src]

pub enum Value {
    Bool(bool),
    Int(i32),
    String(String),
    List(Vec<Value>),
    Object(HashMap<String, Value>),
}

Variants

Trait Implementations

impl Debug for Value
[src]

Formats the value using the given formatter.