Skip to main content

Row

Trait Row 

Source
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§

Source

fn field(&self, name: &str) -> FieldPresence

Implementors§

Source§

impl<T: FieldValues> Row for T

Default Row implementation for any type that exposes FieldValues, which is the standard runtime entity interface.