QueryInputExt

Trait QueryInputExt 

Source
pub trait QueryInputExt: QueryInput {
    // Required method
    fn query(&self) -> Query<Self::Index>;
}
Expand description

Extensions to an aggregate query

Required Methods§

Source

fn query(&self) -> Query<Self::Index>

Prepare a DynamoDB query

This will prepare a query operation for the input, applying the key condition, filter expression, read consistency, and scan direction as defined by the input. Additional settings can be applied by chaining methods on the returned Query value.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<Q> QueryInputExt for Q
where Q: QueryInput + ?Sized,