pub struct KeyCondition {
pub pk_name: String,
pub pk_value_ref: String,
pub sk_condition: Option<SortKeyCondition>,
}Expand description
Parsed key condition.
Fields§
§pk_name: StringPartition key attribute name (resolved).
pk_value_ref: StringPartition key value reference (e.g. :pk).
sk_condition: Option<SortKeyCondition>Optional sort key condition.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for KeyCondition
impl RefUnwindSafe for KeyCondition
impl Send for KeyCondition
impl Sync for KeyCondition
impl Unpin for KeyCondition
impl UnsafeUnpin for KeyCondition
impl UnwindSafe for KeyCondition
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more