@@ -565,16 +565,18 @@ impl error::Error for WasNull {
565
565
/// name. For example, the `serde` feature enables the implementation for the
566
566
/// `serde::json::Value` type.
567
567
///
568
- /// | Rust type | Postgres type(s) |
569
- /// |-----------------------------|-------------------------------------|
570
- /// | serialize::json::Json | JSON, JSONB |
571
- /// | serde::json::Value | JSON, JSONB |
572
- /// | time::Timespec | TIMESTAMP, TIMESTAMP WITH TIME ZONE |
573
- /// | chrono::NaiveDateTime | TIMESTAMP |
574
- /// | chrono::DateTime<UTC> | TIMESTAMP WITH TIME ZONE |
575
- /// | chrono::NaiveDate | DATE |
576
- /// | chrono::NaiveTime | TIME |
577
- /// | uuid::Uuid | UUID |
568
+ /// | Rust type | Postgres type(s) |
569
+ /// |-------------------------------------|-------------------------------------|
570
+ /// | serialize::json::Json | JSON, JSONB |
571
+ /// | serde::json::Value | JSON, JSONB |
572
+ /// | time::Timespec | TIMESTAMP, TIMESTAMP WITH TIME ZONE |
573
+ /// | chrono::NaiveDateTime | TIMESTAMP |
574
+ /// | chrono::DateTime<UTC> | TIMESTAMP WITH TIME ZONE |
575
+ /// | chrono::DateTime<Local> | TIMESTAMP WITH TIME ZONE |
576
+ /// | chrono::DateTime<FixedOffset> | TIMESTAMP WITH TIME ZONE |
577
+ /// | chrono::NaiveDate | DATE |
578
+ /// | chrono::NaiveTime | TIME |
579
+ /// | uuid::Uuid | UUID |
578
580
///
579
581
/// # Nullability
580
582
///
@@ -770,16 +772,18 @@ pub enum IsNull {
770
772
/// name. For example, the `serde` feature enables the implementation for the
771
773
/// `serde::json::Value` type.
772
774
///
773
- /// | Rust type | Postgres type(s) |
774
- /// |-----------------------------|-------------------------------------|
775
- /// | serialize::json::Json | JSON, JSONB |
776
- /// | serde::json::Value | JSON, JSONB |
777
- /// | time::Timespec | TIMESTAMP, TIMESTAMP WITH TIME ZONE |
778
- /// | chrono::NaiveDateTime | TIMESTAMP |
779
- /// | chrono::DateTime<UTC> | TIMESTAMP WITH TIME ZONE |
780
- /// | chrono::NaiveDate | DATE |
781
- /// | chrono::NaiveTime | TIME |
782
- /// | uuid::Uuid | UUID |
775
+ /// | Rust type | Postgres type(s) |
776
+ /// |-------------------------------------|-------------------------------------|
777
+ /// | serialize::json::Json | JSON, JSONB |
778
+ /// | serde::json::Value | JSON, JSONB |
779
+ /// | time::Timespec | TIMESTAMP, TIMESTAMP WITH TIME ZONE |
780
+ /// | chrono::NaiveDateTime | TIMESTAMP |
781
+ /// | chrono::DateTime<UTC> | TIMESTAMP WITH TIME ZONE |
782
+ /// | chrono::DateTime<Local> | TIMESTAMP WITH TIME ZONE |
783
+ /// | chrono::DateTime<FixedOffset> | TIMESTAMP WITH TIME ZONE |
784
+ /// | chrono::NaiveDate | DATE |
785
+ /// | chrono::NaiveTime | TIME |
786
+ /// | uuid::Uuid | UUID |
783
787
///
784
788
/// # Nullability
785
789
///
0 commit comments