All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Support
filter
expression for query and scan. You can passfilter_expression
like following. - Use [email protected]
let filter = Scan::filter_expression(Scan::num()).eq(1000);
let res = client.scan().filter(filter).run().await.unwrap();