We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
現状、GET routes/{id}をすると以下のようなレスポンスとなる
GET routes/{id}
{"id":"7I5cHtC69mQ","name":"sample2","polyline":[{"latitude":0.0,"longitude":100.0},{"latitude":10.0,"longitude":110.0},{"latitude":20.0,"longitude":120.0}],"operation_history":{"op_list":[{"InitWithList":{"list":[{"latitude":10.0,"longitude":110.0},{"latitude":50.0,"longitude":150.0}]}},{"Add":{"pos":0,"coord":{"latitude":0.0,"longitude":100.0}}},{"Add":{"pos":2,"coord":{"latitude":20.0,"longitude":120.0}}},{"Remove":{"pos":3,"coord":{"latitude":50.0,"longitude":150.0}}},{"Clear":{"org_list":[{"latitude":0.0,"longitude":100.0},{"latitude":10.0,"longitude":110.0},{"latitude":20.0,"longitude":120.0}]}}],"pos":4}}
op_listの各要素のスキーマが適当(Addなどの操作名がkeyになってしまっている)なので、ちゃんとやる
各operationを一つのschemaにまとめる時にskip_serializing_ifというserdeのオプションが使えそう serde-rs/serde#947
skip_serializing_if
The text was updated successfully, but these errors were encountered:
良さげなcrate見つけた https://docs.rs/strum/0.20.0/strum/index.html
Sorry, something went wrong.
逆に俺も間違えた
No branches or pull requests
現状、
GET routes/{id}
をすると以下のようなレスポンスとなるop_listの各要素のスキーマが適当(Addなどの操作名がkeyになってしまっている)なので、ちゃんとやる
各operationを一つのschemaにまとめる時に
skip_serializing_if
というserdeのオプションが使えそうserde-rs/serde#947
The text was updated successfully, but these errors were encountered: