pub trait Row {
// Required method
fn field(&self, name: &str) -> FieldPresence;
}Expand description
Row
Abstraction over a row-like value that can expose fields by name. This decouples predicate evaluation from concrete entity types.
Required Methods§
fn field(&self, name: &str) -> FieldPresence
Implementors§
impl<T: FieldValues> Row for T
Default Row implementation for any type that exposes
FieldValues, which is the standard runtime entity interface.