Cannot resolve field name within table
(table: TableName, field: &str)
| 32 | |
| 33 | /// Cannot resolve field name within table |
| 34 | pub fn field(table: TableName, field: &str) -> Self { |
| 35 | Self::Field(table, field.to_owned()) |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | #[derive(Error, Debug)] |