Skip to content

Commit

Permalink
next steps
Browse files Browse the repository at this point in the history
  • Loading branch information
kuqmua committed Jan 5, 2025
1 parent 003d2d3 commit 125241b
Showing 1 changed file with 20 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2858,12 +2858,20 @@ const _: () = {
_serde::ser::SerializeStruct::serialize_field(
&mut __serde_state,
"start",
&self.0.start,
&match self.0.start {
std::collections::Bound::Included(value) => std::collections::Bound::Included(SqlxTypesTimeOffsetDateTime(value)),
std::collections::Bound::Excluded(value) => std::collections::Bound::Excluded(SqlxTypesTimeOffsetDateTime(value)),
std::collections::Bound::Unbounded => std::collections::Bound::Unbounded,
},
)?;
_serde::ser::SerializeStruct::serialize_field(
&mut __serde_state,
"end",
&self.0.end,
&match self.0.end {
std::collections::Bound::Included(value) => std::collections::Bound::Included(SqlxTypesTimeOffsetDateTime(value)),
std::collections::Bound::Excluded(value) => std::collections::Bound::Excluded(SqlxTypesTimeOffsetDateTime(value)),
std::collections::Bound::Unbounded => std::collections::Bound::Unbounded,
},
)?;
_serde::ser::SerializeStruct::end(__serde_state)
}
Expand Down Expand Up @@ -3141,12 +3149,20 @@ const _: () = {
_serde::ser::SerializeStruct::serialize_field(
&mut __serde_state,
"start",
&self.0.start,
&match self.0.start {
std::collections::Bound::Included(value) => std::collections::Bound::Included(SqlxTypesTimePrimitiveDateTime(value)),
std::collections::Bound::Excluded(value) => std::collections::Bound::Excluded(SqlxTypesTimePrimitiveDateTime(value)),
std::collections::Bound::Unbounded => std::collections::Bound::Unbounded,
},
)?;
_serde::ser::SerializeStruct::serialize_field(
&mut __serde_state,
"end",
&self.0.end,
&match self.0.end {
std::collections::Bound::Included(value) => std::collections::Bound::Included(SqlxTypesTimePrimitiveDateTime(value)),
std::collections::Bound::Excluded(value) => std::collections::Bound::Excluded(SqlxTypesTimePrimitiveDateTime(value)),
std::collections::Bound::Unbounded => std::collections::Bound::Unbounded,
},
)?;
_serde::ser::SerializeStruct::end(__serde_state)
}
Expand Down

0 comments on commit 125241b

Please sign in to comment.