//! DynamoDB operation trait — typed `.eq()`/`.gt()`/… methods producing
//! `DynamoCondition`. Blanket-implemented over `Expressive<T>` so columns
//! pick up these methods for free.
//!
//! v0 only wires `.eq()`. The richer set (`.gt`, `.between`, `.in_`,
//! `.begins_with`) lands alongside `Scan`/`Query` filter execution.
use Expressive;
use DynamoCondition;
use AnyDynamoType;