pub enum Value {
USize(usize),
ISize(isize),
Double(f64),
Bool(bool),
Vec(Vec<Value>),
String(String),
Bind(Bind),
Function(Function),
Struct(Struct),
Enum(Enum),
UnKnown(String),
Animation(HashMap<PropsKey, Value>),
}Expand description
§GenUI Value Type
Value Type need to use in |