Expand description
The table/<op> operation model and its Expr wire encoding.
The wire spellings here match sim-table-remote exactly (see
remote_dir.rs for the client call(cx, "<op>", ...) sites and site.rs
for the answer_table_request matcher). Two spellings are NOT the obvious
ones and are matched deliberately:
TableOp::Deleteencodes totable/del(nottable/delete);TableOp::IsDirencodes totable/dir?(nottable/isdir).
Enums§
- TableOp
- A single table operation, independent of any transport.
- Table
OpError - Why decoding an
Exprinto aTableOpfailed.
Functions§
- decode_
table_ op - Decode a
table/<op>callExprback into aTableOp. - encode_
table_ op - Encode a
TableOpas atable/<op>callExpr.