Returns the number of columns in this [`RelationDesc`].
(&self)
| 1092 | |
| 1093 | /// Returns the number of columns in this [`RelationDesc`]. |
| 1094 | pub fn len(&self) -> usize { |
| 1095 | self.typ().column_types.len() |
| 1096 | } |
| 1097 | |
| 1098 | /// Constructs a new `RelationDesc` from a `SqlRelationType` and an iterator |
| 1099 | /// over column names. |
no test coverage detected