pub trait ExprValueType {
type ValueType;
}Expand description
Row inference types and traits. Resolves the Rust value type for a column or typed expression.
Implemented for:
- Column ZSTs (proc macro generates alongside
ColumnValueType) SQLExpr<T, N, A>whereT: SQLTypeToRust<D>andN: WrapNullable
For SQL<'a, V> (raw SQL), ValueType = () — the user must specify
the concrete row type via turbofish (.all::<T>()).
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".