bevy
bevy copied to clipboard
BrpQueryRow has field deserialization fix
Objective
BrpQueryRow doesn't serialize has field if it is empty. That is okay until you try to deserialize it after. Then it will fail to deserialize due to missing field.
Solution
Serde support using default value when field is missing, this PR adds that.