Crate ql2[−][src]
RethinkDB protocol implementation in Rust
Modules
| datum | Nested message and enum types in |
| frame | Nested message and enum types in |
| query | Nested message and enum types in |
| response | Nested message and enum types in |
| term | Nested message and enum types in |
| version_dummy | Nested message and enum types in |
Structs
| Backtrace | |
| Datum | A Datum is a chunk of data that can be serialized to disk or returned to the user in a Response. Currently we only support JSON types, but we may support other types in the future (e.g., a date type or an integer type). |
| Frame | A backtrace frame (see |
| Query | You send one of: |
| Response | You get back a response with the same [token] as your query. |
| Term | A Term is either a piece of data (see Datum above), or an operator and its operands. If you have a Datum, it’s stored in the member datum. If you have an operator, its positional arguments are stored in [args] and its optional arguments are stored in [optargs]. |
| VersionDummy | We need to wrap it like this for some |