pub trait DecodeRow: Sized { }Expand description
Decodes a query’s Output positionally out of a PgRow. Keyed on the
plain-Rust type a selection produces rather than on the selection
itself: erasure leaves only Output, with no Selection impl left to
hang decoding off, so this is implemented directly against the closed set
of native types.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".