pub fn from_msgpack(
_msgpack: &[u8],
_plan: &ExecutionPlan,
) -> Result<HashMap<String, LiteralValue>, LemmaError>Expand description
Convert MsgPack values to typed Lemma values using the ExecutionPlan for type information.
MsgPack preserves type information (int, float, bool, string, etc.), allowing validation that values are compatible with expected Lemma types.
This is a stub implementation. Full MsgPack support requires:
- Add rmp-serde dependency
- Deserialize MsgPack to intermediate format
- Validate MsgPack types against expected Lemma types
- Convert to LiteralValue directly