diff --git a/README.md b/README.md index 7665b21c..204d61b3 100644 --- a/README.md +++ b/README.md @@ -262,6 +262,13 @@ types. The driver currently supports the following conversions: +`Option` implements `FromSql` where `T: FromSql` and `ToSql` where `T: +ToSql`, and represents nullable Postgres values. + +`&[T]` and `Vec` implement `ToSql` where `T: ToSql`, and `Vec` +additionally implements `FromSql` where `T: FromSql`, which represent +one-dimensional Postgres arrays. + More conversions can be defined by implementing the `ToSql` and `FromSql` traits.