Trait State
pub trait State: StateR {
// Required method
fn set(&mut self, key: Key, val: Option<Value>);
}Expand description
Low-level state used by Lyquor Virtual Machine (LVM). A state is essentially a key-value mapping.
pub trait State: StateR {
// Required method
fn set(&mut self, key: Key, val: Option<Value>);
}Low-level state used by Lyquor Virtual Machine (LVM). A state is essentially a key-value mapping.