(exprs: T)
| 156 | |
| 157 | impl FromIterator<ProjectionExpr> for ProjectionExprs { |
| 158 | fn from_iter<T: IntoIterator<Item = ProjectionExpr>>(exprs: T) -> Self { |
| 159 | Self { |
| 160 | exprs: exprs.into_iter().collect(), |
| 161 | } |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | impl AsRef<[ProjectionExpr]> for ProjectionExprs { |