We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ad8b8e5 + cdfc3b5 commit 29259f9Copy full SHA for 29259f9
src/value/convert/chrono.rs
@@ -25,6 +25,11 @@ impl FromValue for NaiveDate {
25
type Intermediate = ParseIr<NaiveDate>;
26
}
27
28
+#[cfg_attr(docsrs, doc(cfg(feature = "chrono")))]
29
+impl FromValue for NaiveTime {
30
+ type Intermediate = ParseIr<NaiveTime>;
31
+}
32
+
33
#[cfg_attr(docsrs, doc(cfg(feature = "chrono")))]
34
impl FromValue for NaiveDateTime {
35
type Intermediate = ParseIr<NaiveDateTime>;
0 commit comments