rethinkdb-rs icon indicating copy to clipboard operation
rethinkdb-rs copied to clipboard

A native RethinkDB driver written in Rust

Results 14 rethinkdb-rs issues
Sort by recently updated
recently updated
newest added

How to insert data. Any example?

Is there any reason for there to be an `example` function in the code? From my observations, the code for this function is incorrect and ends up with a build...

There was a problem with queries: Simple get all items in table ```rust let mut cur = r.table(name).run::(conn); let mut res: Vec = vec![]; while let Some(val) = cur.try_next().await? {...

Hello, First of all, thank you for the great sofware you have been writing, we use rethinkdb a lot in my company. Second, I am new to Rust language and...