pub trait ColumnNames: Sealed {
// Provided method
fn names() -> Vec<&'static str> { ... }
}Expand description
The names a declared row spells, in order — read off the row itself so
a WITH name (..) header cannot disagree with the shape its body was
checked against. Implemented here only, for RowNil and RowCons.
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".