We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 498eca6 commit f91d6a5Copy full SHA for f91d6a5
README.md
@@ -262,6 +262,13 @@ types. The driver currently supports the following conversions:
262
</tbody>
263
</table>
264
265
+`Option<T>` implements `FromSql` where `T: FromSql` and `ToSql` where `T:
266
+ToSql`, and represents nullable Postgres values.
267
+
268
+`&[T]` and `Vec<T>` implement `ToSql` where `T: ToSql`, and `Vec<T>`
269
+additionally implements `FromSql` where `T: FromSql`, which represent
270
+one-dimensional Postgres arrays.
271
272
More conversions can be defined by implementing the `ToSql` and `FromSql`
273
traits.
274
0 commit comments