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.

Required Methods§

fn set(&mut self, key: Key, val: Option<Value>)

Implementors§