error[E0277]: the trait bound `chrono::DateTime<Utc>: JsonSchema` is not satisfied
--> src/main.rs:59:16
|
59 | place_at: chrono::DateTime<Utc>,
| ^^^^^^^^^^^^^^^^^^^^^ the trait `JsonSchema` is not implemented for `chrono::DateTime<Utc>`
How can I fix it? I can not impl JsonSchema for type from other lib
I have a code:
and endpoint
And I`ve got a error:
How can I fix it? I can not impl JsonSchema for type from other lib