This crate serves as a temporary yet complete implementation of an async Rust client to connect to a remote SurrealDB instance via its RPC endpoint until the official SurrealDB client crate comes out.
The crate is aimed to be used in Rust backends and was not tested in a WASM environment. It probably doesn't work at all
```rust
async fn main() -> Result<(), Box
client.signin("root", "root").await.expect("Signin error"); client.usenamespace("mynamespace", "my_namespace").await.expect("Namespace error");
client.sendquery("create User set username = $username".toowned(), json!({ "username": "John" }),) .await .unwrap();
let someuser: Option
if let Some(user) = some_user { print!("found user: {:?}", user); } } ```
The SurrealClient
type offers utility functions to:
- send a query in order to get a raw, unparsed response: client.send_query()
- send a query and get the first element of type <T>
from the response: client.find_one()
- send a query and get the many elements of type <T>
in the form of a Vec<T>
from the response: client.find_many()
You can find a complete example in the ./tests
directory.